-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 941 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
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Local Weather Service</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script type="text/javascript" src="https://rawgithub.com/darkskyapp/skycons/master/skycons.js"></script>
<script type="text/javascript" src="js/icons.js"></script>
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div class="container">
<h1>
Weather App
</h1>
<p id="location"></p>
<div class="row">
<p id="temperature"></p><a href="#" id="unit">F</a>
</div>
<p id="weather"></p>
<figure id="icons">
<canvas id="icon" width="128" height="128"></canvas>
</figure>
</div>
</body>
</html>