-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (34 loc) · 945 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
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Weather App - JavaScript</title>
<link rel="stylesheet" href="font/Rimouski.css">
<link rel="stylesheet" href="style.css">
<style>
</style>
</head>
<body>
<div class="container" style="margin-top: 170px;">
<div class="app-title">
<p>Weather</p>
</div>
<div class="notification"> </div>
<div class="weather-container">
<div class="weather-icon">
<img src="icons/unknown.png" alt="">
</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="app.js"></script>
</body>
</html>