-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwikisearch.html
47 lines (44 loc) · 1.82 KB
/
wikisearch.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
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wikipedia viewer</title>
<link rel="stylesheet" type="text/css" href="grid.css">
<link rel="stylesheet" type="text/css" href="main.css">
<script type="text/javascript" src="code.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="row">
<div class="col-e-12">
<div class="row">
<div class="header">
<h3 class="col-e-8 col-offset-e-4 col-m-7 col-offset-m-5 ">WikiPedia Search</h3>
<p class="col-e-8 col-offset-e-3 col-m-8 col-offset-m-4">Search articles in the English language wikipedia</p>
</div>
</div>
<div class="row">
<div class="col-e-12 col-m-12 onoffswitch">
<input type="checkbox" id="check" name="onoffswitch" class="onoffswitch-checkbox">
Live Search<label for="check" class="onoffswitch-label">
<span class="onoffswitch-inner"></span>
</label>
</div>
<div class="col-e-12 col-m-4 col-offset-m-4" id="form">
<input type="search" id="search" placeholder="Type to search" style="min-width: 70%">
<input type="submit" value="submit" id="submit">
</div>
<div class="col-e-12 col-m-4 col-offset-m-4 live" id="live">
<ul id="livesearch">
<li><a>1</a></li>
<li>2</li>
</ul>
</div>
<div id="results" class="col-e-12 col-l-6 col-offset-l-3">
</div>
</div>
</div>
</div>
</body>
</html>