-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (33 loc) · 1.38 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>wiki search</title>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<div class="row">
<h2 class="title">Wikipedia Search Box<small><a href="https://en.wikipedia.org/wiki/Special:Random" target='_blank'>Random Article <span class="glyphicon glyphicon-random" aria-hidden="true"></span></a></small></h2>
<div id="custom-search-input">
<form>
<div class="input-group col-md-12">
<input type="text" class=" search-query form-control" placeholder="Search" />
<span class="input-group-btn">
<button class="btn" type="button">
<span class=" glyphicon glyphicon-search"></span>
</button>
</span>
</div>
</form>
</div>
</div>
<ul id="results">
</ul>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>