-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (28 loc) · 947 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
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<title>Wiki Viewer</title>
<link rel="stylesheet" type="text/css" href="wikiViewer.css">
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<script type="text/javascript" src="wikiViewer.js"></script>
</head>
<body>
<div class="wv"> <!-- flex -->
<div class="container">
<header id="title"><span>Wiki Viewer</span></header>
<div>
<div class="subcontainer"><!-- flex -->
<div id="padding">
<span class="icon"><i class="fa fa-search" aria-hidden="true"></i></span>
</div>
<input type="text" id="search" name="search" placeholder="Search here" oninput="requestJSONP()" autocomplete="off">
</div>
</div>
</div>
<div id="results">
</div>
</div>
</body>
<script src="https://use.fontawesome.com/02b956c77d.js"></script>
</html>