-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.02 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.02 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="keywords" content="simple weather, weather app, san francisco, sf">
<meta name="description" content="A simple, fast, and sleek weather app">
<meta name="author" content="Filip Reese">
<meta name="copyright" content="Filip Reese Copyright (c) 2013">
<title>Simple Weather</title>
<link rel="stylesheet" type="text/css" href="index.css">
<script type="text/javascript" src="jquery.min.js"></script>
</head>
<body>
<section id="main">
<div class="current-weather">
<h1 id="temp"></h1>
<h3 id="conditions"></h2>
</div>
<div class="forecast">
<div id="forecast">
<div id="tomorrow" class="day"></div>
</div>
</div>
</section>
<script type="text/javascript" src="location.js"></script>
<script type="text/javascript" src="weather.js"></script>
<script type="text/javascript" src="forecast.js"></script>
</body>
</html>