-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (51 loc) · 1.37 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!-- HTML CODE -->
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UFT-8">
<title>Weather App - JavaScript</title>
<link rel = "stylesheet" href="font/Rimouski.css">
<link rel = "stylesheet" href = "style.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 = "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>
<div class = "whitespace"></div>
<div class = "clothing-Container">
<div class = "Clothing-title">
<p>Recommended clothing</p>
</div>
<div class = "clothing-top">
<p>-</p>
</div>
<div class = "clothing-bottom">
<p>-</p>
</div>
<div class = "footwear">
<p>-</p>
</div>
<div class = "accessories">
<p>-</p>
</div>
</div>
<script src = "app.js"></script>
</body>
</html>