-
Notifications
You must be signed in to change notification settings - Fork 0
/
wiki.html
59 lines (38 loc) · 1.84 KB
/
wiki.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Wikipedia Search</title>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css'>
<link rel="stylesheet" href="css1/style.css">
</head>
<body>
<body>
<div class="container">
<div id="content">
<h3>Search Wikipedia</h3>
<form class='form-inline'>
<div class="input-group">
<input type='text' id='search' class="form-control search-form" placeholder="Scooby Doo">
<span class="input-group-btn" style="width:39px">
<button id="search-this"type="button" class="pull-right btn btn-default search-btn">
<i class="fa fa-search"></i>
</button>
</span>
</div>
</form>
<p id="get_random"><a href="https://en.wikipedia.org/wiki/Special:Random" target="_blank">Get a random page</a></p>
</div>
<div class='rows' id='results'>
</div>
<footer class="text-center">
<hr>
<p id="bottom_text">Shubham Jindal| Portfolio</a> | <a href="https://08shubhamjindal.github.io/" target="_blank">Blog</a> | <a href="https://www.linkedin.com/in/08shubhamjindal" target="_blank"><i class="fa fa-linkedin-square"></i></a> | <a href="https://github.com/08shubhamjindal" target="_blank"><i class="fa fa-github-square"></i></a> | <a href="https://twitter.com/08shubhamjindal" target="_blank"><i class="fa fa-twitter-square"></i></a> | </p>
</footer>
</div>
</body>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js'></script>
<script src="./js1/index.js" type="text/javascript"></script>
</body>
</html>