-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 1.5 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 1.5 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
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Weather APP</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div class="container main-section">
<div class="row">
<!-- Title for App -->
<span id="title-app">Weather App</span>
<!-- Rounded Toggle Switch -->
<label class="switch">
<input type="checkbox">
<span class="slider round"></span>
</label>
<span id="toggle">Show temp in:
°<span id="centigrade">C</span>
</span>
<div>
<div id="temp"></div>
<div id="name"></div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div>
<footer class="text-center"><p id="footer-txt">Created by: Marquis Hall for FreeCodeCamp</p></footer>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://gitcdn.link/cdn/darkskyapp/skycons/master/skycons.js"></script>
<script src="./logic.js"></script>
</body>