-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 935 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Osman Zakir" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="styles/style.css" />
<title>Random Quote Machine</title>
</head>
<body>
<section>
<div class="container-fluid">
<header>
<h1>Wikipedia Viewer App</h1>
</header>
<article class="search-position">
<p class="search-icon">
<input name="search" id="search" type="search">
</p>
</article>
<article class="random">
<a href="https://en.wikipedia.org/wiki/Special:Random" target="_blank">
<button type="button" class="btn btn-primary">Click Here for a Random Article!</button>
</a>
</article>
<article class="results">
</article>
</div>
</section>
</body>
</html>