-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>Look through Wikipedia</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="container">
<div id="heading">
<h1 class="text-center">Wikipedia Searcher</h1>
<div class="input-group input-group-lg">
<input id="searchText" type="text" class="form-control" placeholder="Search for...">
<span class="input-group-btn">
<button id="search" class="btn btn-default" type="button"><span class="glyphicon glyphicon-search"></span>Press</button>
<h3></h3>
</span>
</div>
</div>
</section>
<section>
<div id="wik">
<h4>Wikipedia Result</h4>
<ul id="data">
</ul>
</div>
<div id="nyc">
<h4>New York Times Result</h4>
<ul id="results" style="list-style-type:none">
</ul>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="main.js" type="text/javascript" charset="utf-8" async defer></script>
</body>
</html>