-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal-weather.html
26 lines (26 loc) · 1.04 KB
/
local-weather.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Show Local Weather</title>
<!-- <link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4.3.0/css/font-awesome.min.css"> -->
<link href="https://cdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.staticfile.org/weather-icons/2.0.10/css/weather-icons.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather:300,400,700,900" rel="stylesheet">
<script src="https://cdn.staticfile.org/jquery/2.2.4/jquery.min.js"></script>
<link rel="stylesheet" href="css/local-weather.css">
</head>
<body>
<div class="row">
<div class="main .col-lg-12 .col-xs-12">
<h1>Free C<i class="wi wi-day-sunny"></i>de Camp</h1>
<h1>Web Weather</h1>
<p id="city"></p>
<p id="temp"><span id="unit"></span></p>
<p id="weather"></p>
<div class="icon"><i class="wi"></i></div>
</div>
</div>
<script src="js/local-weather.js"></script>
</body>
</html>