-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp3.html
More file actions
37 lines (32 loc) · 901 Bytes
/
app3.html
File metadata and controls
37 lines (32 loc) · 901 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
36
37
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Weather app3</title>
<link rel="stylesheet" href="css/app3.css">
</head>
<body>
<div class="container">
<div class="app-title">
<p>Weather</p>
</div>
<div class="notification"></div>
<div class="weather-container">
<div class="weather-icon"><img src="" alt="img"/></div>
<div class="temperature-value">
<p>- °<span>C</span></p>
</div>
<div class="temperature-description">
<p> - </p>
</div>
<div class="location">
<p>-</p>
</div>
</div>
</div>
<script src="js/app3.js"></script>
</body>
</html>