-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (45 loc) · 2.04 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
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE HTML>
<html>
<head>
<link rel="import" href="favicons.html" >
<title>Degrees to Hitler</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="searchbar.js"></script>
</head>
<body>
<!-- Header -->
<header id="header" class="alt">
<div class="inner">
<h1>Degrees to Hitler</h1>
</div>
</header>
<!-- Wrapper -->
<div id="wrapper">
<!-- Banner -->
<section id="intro" class="main">
<span class="icon fa-wikipedia-w major"></span>
<h2>The Six Degrees of Hitler</h2>
<p>Ever heard the theory that every article on wikipedia
can be linked back to Hitler in six clicks or less?<br> Put that theory to the test! Search for an article and see the path <br>that will connect it to Hitler.</p>
</section>
<!-- Items -->
<section id="main" class="main">
<h4 style="text-align: left;margin-left:5em;">Find an Article!</h4>
<input id="articlesearch" onkeyup="getResults(value);" type="text" name="FirstArticle" autocomplete="off">
<div id="searchresults"></div>
</section>
<!-- Footer -->
<footer id="footer">
<p class="copyright">© Untitled. Design: <a href="https://templated.co">TEMPLATED</a>. Images: <a href="https://unsplash.com">Unsplash</a>.</p>
</footer>
</div>
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/skel/3.0.1/skel-layout.min.js"></script>-->
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>