-
Notifications
You must be signed in to change notification settings - Fork 0
/
local-weather.html
36 lines (36 loc) · 1.72 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
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title>Local Weather App</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="dist/css/app.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<section class="text-center vertical-center full-height">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<h2>Local Weather App</h2><a class="btn btn-primary" id="getWeather">Get Weather</a>
<div class="btn-group" role="group">
<button class="btn btn-default active" id="btnC" type="button">C</button>
<button class="btn btn-default" id="btnF" type="button">F</button>
</div>
<div id="weather">
<h2> <span id="locName"></span><img id="weatherIcon"></h2>
<h1 id="weatherDescr"></h1>
<h1 id="temp"> </h1>
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="dist/js/local-weather.js"></script>
</body>
</html>