-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (27 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Local Weather</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<body>
<h1 align="center">Weather app</h1>
<h2 id="city" align="center"></h2>
<h2 id="temp" align="center"></h2>
<h2 id="status" align="center"></h2>
<div class="wrapper" id="moreinfo">
<a href="#moreinfo" id="info"></a>
</div>
<div id="addinfo" class="txtcntr"></div>
<img src="" id="icon"></img>
</body>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/systemjs-plugin-json/0.3.0/json.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/open-weather/2.0.0/openweather.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/webshim/1.16.0/dev/shims/geolocation.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jQuery-Geolocation/1.0.50/jquery.geolocation.js'></script>
<script src="js/index.js"></script>
</body>
</html>