-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 2.07 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
55
<!DOCTYPE html>
<html>
<!-- CSS -->
<link rel="stylesheet" href="css/normalize.css?v=1">
<link rel="stylesheet" href="css/skeleton.css?v=1">
<link rel="stylesheet" href="css/main.css?v=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
if(navigator.userAgent.indexOf('iPhone') > -1 )
{
document
.querySelector("[name=viewport]")
.setAttribute("content","width=device-width, initial-scale=1, maximum-scale=1");
}
</script>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000">
<meta name="msapplication-TileColor" content="#000000">
<meta name="theme-color" content="#000000">
<!-- Meta OG -->
<meta property="og:image" content="img/aretheydeadyet.png">
<head>
<title>Are they dead yet?</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="twelve column heading">
<div id="header">
<a href="index.html">
<img class="u-pull-left iconblack" src="img/grim-reaper_icon_black.png" />
<img class="u-pull-left iconwhite" src="img/grim-reaper_icon_white.png" />
</a>
<h1 class="home u-pull-left"><a href="index.html">Are they dead yet?</a></h1>
</div> <!-- end div id header -->
<input type="search" id="search-box" placeholder="Enter a name...">
<div id="suggestions" size="5"></div>
<!--<button id="search-button">Search</button>-->
</div>
</div>
<div class="row">
<div class="twelve column atdy">
<div id="person-info"></div>
</div>
</div>
</div>
<script src="js/script.js?v=1"></script>
<script src="js/specialPersonIds.js?v=1"></script>
</body>
</html>