-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (29 loc) · 1009 Bytes
/
index.html
File metadata and controls
38 lines (29 loc) · 1009 Bytes
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 lang="en">
<head>
<meta charset="utf-8">
<title>Wikipedia API</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./resources/css/WikiAPICSS.css">
<link rel="stylesheet" type="text/css" href="./resources/css/mediaqueries.css">
</head>
<body>
<div class="container">
<div>
<h1 class="header-title">
<span class="drop-caps">W</span>ikipedia <span class="drop-caps">V</span>iewer
</h1>
<div>
<p class="sub-title">Type some text in the search bar, then click Search or press Enter.</p>
</div>
</div>
<br>
<div class="search-area">
<input class="search-query" type="text" maxlength="20" onkeyup="disableInputField()" />
<button class="search-button" onclick="getData()">SEARCH</button>
</div>
<div class="content-output"></div>
</div>
<script src="./resources/js/WikiAPIJS.js"></script>
</body>
</html>