-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 993 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
27
<!DOCTYPE html>
<html lang="en">
<head>
<!-- search bar from https://codepen.io/anon/pen/rOLrXm-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Wikipedia Viewer</title>
<link rel="stylesheet" href="./style.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./backend.js"></script>
<link rel="icon" href="https://raw.githubusercontent.com/Chris6077/Portfolio/master/images/logo.png">
<style type="text/css">
</style>
</head>
<body>
<div class="container">
<a id="random" href="https://en.wikipedia.org/wiki/Special:Random">Random</a>
<form id="form">
<input id="searchbar" type="search" placeholder="Search...">
</form>
</div>
<div id="footer">
<div class="col-md-8">
<span>Copyright © 2018 Christian Winkler</span>
</div>
</div>
</body>
</html>