-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 889 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather Application :)</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<my-component></my-component>
<div class="location">
<h1 class="location-timezone">Timezone</h1>
<canvas class="icon" width="128" height="128"></canvas>
</div>
<div class="temperature">
<div class="degree-section">
<h2 class="temperature-degree">34</h2>
<span>F</span>
</div>
<div class="temperature-description">It's friggin cold</div>
</div>
<script src="skycons.js"></script>
<script src="app.js"></script>
<script
type="module"
src="./node_modules/booking-plugin/dist/booking-plugin/booking-plugin.esm.js"
></script>
</body>
</html>