-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.14 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<style></style>
<meta charset="UTF-8">
<title>Local Weather</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="weatherStyle.css">
</head>
<body>
<div class="container-fluid ">
<div class="row text-center general">
<div class="weather-area">
<img src="" id="weather-icon">
<div class="weather-temp-container">
<span class="weather-temp"></span>
<span class="temp-icon" id="fc">℉</span>
<h3 class="weather-general"></h3>
<h3 id="weather-time"><h3>
<h3 id="weather-day"><h3>
<h3 id="weather-location"></h3>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.13.0/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="weatherScript.js"></script>
</body>
</html>