-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlwa.html
More file actions
35 lines (30 loc) · 898 Bytes
/
lwa.html
File metadata and controls
35 lines (30 loc) · 898 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="lwa.js"></script>
<script src="https://use.fontawesome.com/02b956c77d.js"></script>
<link rel="stylesheet" type="text/css" href="lwa.css">
<title>Local Weather App</title>
</head>
<body>
<div class="container">
<div class="lwa">
<header id="title">Local Weather App</header>
<button id="permission"><i class="fa fa-crosshairs fa-3x" id="crosshairs" aria-hidden="true"></i></button>
<div id="reveal">
<div class="weatherInfo">
<div class="iconContainer">
<img src="" id="imageIcon">
<div id="verticalLine"></div>
<p id="displayDescription">description</p>
</div>
<div>
<i class="fa fa-thermometer-empty fa-2x" aria-hidden="true"><span id="displayTemp">temp</span><span id="unit">°F</span></i>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>