-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (29 loc) · 1.41 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--google fonts-->
<link href="https://fonts.googleapis.com/css?family=Electrolize" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<title>Wikipedia Viewer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Wikipedia Search Engine</h1><br>
<img src="Capture.PNG">
<a href="https://en.wikipedia.org/wiki/Special:Random"></a>
<input class="from-control" id="searchTerm" placeholder="Search Wikipedia..."><br>
<button id="search" type="button" class="btn btn-info b1">WIKI Search</button>
<button id="search" type="button" class="btn btn-info b2">I'm feeling lucky</button>
<br>
<ul id="output" class="todo">
</ul>
</div>
<script src="jscript.js"></script>
</body>
</html>