-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (46 loc) · 1.68 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Wikipedia Viewer</title>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container-fluid">
<div class = "row text-center">
<h2>
<img width=45 height=45 src='https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Wikipedia_Logo_1.0.png/220px-Wikipedia_Logo_1.0.png'>
Wikipedia Viewer
<img width=45 height=45 src='https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Wikipedia_Logo_1.0.png/220px-Wikipedia_Logo_1.0.png'>
</h2>
</div>
<div class = "row text-center">
<div class = "col-xs-12">
<a class="btn btn-custom" href="https://en.wikipedia.org/wiki/Special:Random" target="_blank">Get Random Page</a>
<br />
or
<br />
<div class = "col-xs-4"></div>
<div class = "col-xs-4">
<label>Type search term and press 'Enter'</label><br />
<input id="searchTerm" type="text">
</div>
<div class = "col-xs-4"></div>
<br />
</div>
</div>
<div class = "row text-left">
<div class = "col-xs-12">
<div class = "col-xs-1"></div>
<div id=searchResults class = "col-xs-10"></div>
<div class = "col-xs-1"></div>
<br />
<div id=searchResults class = "col-xs-2"></div>
</div>
</div>
<script src='https://code.jquery.com/jquery-2.2.4.min.js'></script>
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>