-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.04 KB
/
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
<!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>Wikipedia Viewer App</title>
<script async src="scripts/script.js"></script>
</head>
<body>
<main>
<div class="container-fluid">
<header>
<h1>Wikipedia Viewer App</h1>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/77/Wikipedia_svg_logo.svg/480px-Wikipedia_svg_logo.svg.png" width="480px" height="480px" alt="Wikipedia logo"/>
</header>
<form id="wiki-search">
<p class="search-icon">
<input name="search" id="search" type="search"><input type="submit" name="submit" id="search-button" value="Search" />
<a href="https://en.wikipedia.org/wiki/Special:Random" target="_blank" id="random">Random Article</a>
</p>
</form>
<section class="results">
</section>
</div>
</main>
</body>
</html>