-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (28 loc) · 764 Bytes
/
index.html
File metadata and controls
32 lines (28 loc) · 764 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Get The Local Weather</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/main.min.css" />
</head>
<body>
<h1>Show The Local Weather</h1>
<h3>Front End Development Project</h3>
<div id="time"></div>
<div id="position">
<span id="country"></span>
</div>
<div id="time"></div>
<div id="wrap">
<div>
<span id="weather"></span>
<span id="weather-icon"></span>
</div>
<div id="wind"></div>
<div id="temp"></div>
</div>
<script src="assets/js/jquery-2.1.4.min.js" type="text/javascript"></script>
<script src="assets/js/functions.js" type="text/javascript"></script>
</body>
</html>