-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (31 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>Is it going to rain?</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="fonts/fonts.css" type="text/css" charset="utf-8" />
<!-- Favicons -->
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="apple-touch-icon-57x57-precomposed.png">
</head>
<body id="slide-blank">
<div id="weather">
<header>
<h1 class="huge">Is it going to rain?</h1>
<h4 class="subtitle"></h4>
</header>
<footer>
<p class="location">Loading...</p>
<img class="location" id="settings" src="img/cog.svg">
<img class="info" id="menu" src="img/menu.svg">
</footer>
</div>
<!-- Javascript -->
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="js/script.js" type="text/javascript"></script>
</body>
</html>