-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (37 loc) · 1.36 KB
/
index.html
File metadata and controls
47 lines (37 loc) · 1.36 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>FCC Weather APP</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
</head>
<body>
<h2>FreeCodeCamp</h2>
<h2>Local Weather App</h2>
<div id="w-box">
<div id="chg-units">
<button id="tempC" type="button">C</button>
<button id="tempF" type="button">F</button>
</div>
<div id="w-place"><h3></h3></div>
<div id="w-data">
<div id="w-icon"><img src="#" id="img-icon"></div>
<div id="w-temp"><h4></h4></div>
</div> <!-- END OF W-DATA-->
<div id="w-extra">
<div class="w-extra-box" id="w-humid"><h4></h4></div>
<div class="w-extra-box" id="w-sky"><h4></h4></div>
<div class="w-extra-box" id="w-wind"><h4></h4></div>
<div class="w-extra-box" id="w-precip"><h4></h4>
</div>
</div> <!--END OF W-EXTRA-->
<!--<div id="accuracy"><p></p></div> -->
</div> <!--END OF W-BOX-->
<footer><p><span>made by mar-bi © 2017</span></p></footer>
<script src="js/jquery-3.2.0.js"></script>
<script type="text/javascript" src="js/weather.js"></script>
</body>
</html>