-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 955 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 955 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Wikipedia Viewer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" type="text/css" href="./src/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,300i,400,700" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="./src/js/viewer.js"></script>
</head>
<body>
<div class="wrapper">
<h1>Wikipedia Viewer</h1>
<input id="search-input" type="text" name="search">
<div class="search-section">
<input id="submit-btn" class="btn" type="submit" value="search">
<input id="random-btn" class="btn" type="button" value="random">
</div>
<h2 id="error"></h2>
<div id="results-section">
</div>
</div>
</body>
</html>