This repository has been archived by the owner on Feb 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathweather.html
69 lines (66 loc) · 1.97 KB
/
weather.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Weather Today</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="./css/weather.css" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="notification"></div>
<div class="details-today">
<div class="location-and-image">
<div class="location">
</div>
<div class="today-icon">
<img class="today-card-img" src="assets/icons/nt_unknown.png" /></div>
<div class="desc"></div>
<span class="today-min-max"></span>
</div>
<div class="curr-temp">° C</div>
<div class="date-column">
<div class="day-date"></div>
<br /><br /><br /><br />
<div class="parameters-today">
Humidity
<img
class="humidity-icon"
src="./assets/weather-today/humidity.png"
alt=""
/>:
<span class="humidity"></span>
<br />
Wind
<img
class="wind-icon"
src="./assets/weather-today/wind.png"
alt=""
/>:
<span class="wind"></span>
<br />
Precipitation
<img
class="precipitation-icon"
src="./assets/weather-today/rain.png"
alt=""
/>:
<span class="precipitation"></span>
</div>
</div>
</div>
<div class="weather-today"></div>
<div class="container"></div>
<script src="./js/weather.js"></script>
</body>
</html>