-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 873 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="heading-section">
<h1>WikiCrawler</h1>
<p>Who needs the MediaWiki API anyway?</p>
</div>
<div id="search-section">
<input id="search-box" type="text" name="search" placeholder="Search..">
<button id="search-submit" onclick="crawl()">Send</button>
</div>
<div id="instructions">
<p>Enter keywords to use to search Wikipedia, and use the links the appear below to go directly to the article you want.</p>
</div>
<div id="results-section">
<!-- no-results-text will go here -->
<ul id="results-list"><!-- dynamic --></ul>
</div>
<script src="main.js"></script>
</body>
</html>