-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (25 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title> Wikipedia Viewer</title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container d1">
<h1 align=center>Wikipedia Viewer</h1>
<a href="https://en.wikipedia.org/wiki/Special:Random" target="blank"><code>Click here for a random article!</code></a><br>
<input type="textbox" id="txt"></input><br>
<button class="btn" id="search">Search</button>
<p id="test"></p>
<ul id="list">
</ul>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/systemjs-plugin-json/0.3.0/json.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/fdaciuk-ajax/2.3.0/ajax.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>