-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (32 loc) · 982 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="app.js"></script>
<script src="https://rawgithub.com/maxdow/skycons/master/skycons.js"></script>
<style>
html {
font-family: "Avenir Next", Helevetica, sans-serif;
text-align: center;
}
body {
margin: 0 auto;
}
h1,
h2 {
font-weight: 300;
}
</style>
</head>
<!-- <input type = "text" id = "code" value = "enter your key" /> -->
<!-- <button onclick="weather()">Get Weather</button> -->
<body>
<input type="text" id="simple" />
<button onclick="weather(simple.value)">Get Weather</button>
<h1><div id="temp"></div><div id="minutely"></div><div id="hourly"></div></h1>
<h2><div id="location"></div></h2>
<figure id = "icon"><canvas id="partly-cloudy-night" width="175" height="175"></canvas></figure>
</body>
</html>