-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (20 loc) · 1.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Larry's Wikiviewer</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body class="wiki-search">
<h1 id="title" class="text-center">Larry's Wikipedia Viewer</h1>
<form id="searchbar" method="post">
<input type="search" name="srsearch" placeholder="" style="font-family:Arial, FontAwesome"/>
<input id="submit" type="submit" style="visibility: hidden;"/>
</form>
<button id="random-wiki" type="button">Random Wiki</button>
<div id="search-results"></div>
<script src="app.js"></script>
</body>
</html>