-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
29 lines (27 loc) · 1.01 KB
/
app.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
<html lang="pt-br">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link href="https://fonts.googleapis.com/css?family=Maven+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" href="app.css">
<title>Weather- JS APP</title>
</head>
<body>
<div class="container dflex alg-center just-center fcoluna h100">
<div class="location w50 dflex just-sa alg-center">
<h1 class="location-timezone">Timezone</h1>
<canvas class="icon" width="128" height="128"></canvas>
</div><!--location-->
<div class="temperature w50 dflex just-sa alg-center fcoluna">
<div class="degree-sec dflex alg-center">
<h2 class="degree">20</h2>
<span>°C</span>
</div>
<div class="description">
</div>
</div>
</div><!--container-->
<script src="skycons.js"></script>
<script src="app.js"></script>
</body>
</html>