-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (66 loc) · 2.13 KB
/
index.html
File metadata and controls
83 lines (66 loc) · 2.13 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Ubuntu:wght@400;500;700&display=swap"
rel="stylesheet">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css?15" rel="stylesheet">
<link rel="stylesheet" href="css/weather-icons-wind.min.css">
<link rel="stylesheet" href="css/weather-icons.min.css">
<link rel="stylesheet" href="css/style.css?15">
<title>Weather API</title>
</head>
<body class="bg">
<div class="sunrise">
<div>
<i class="js wi wi-sunrise" data-aos="fade-up"></i> <span id="sunrise">80:00</span>
</div>
<p id="city">...</p>
<div>
<i class="js wi wi-sunset" data-aos="fade-up"></i> <span id="sunset">18:30</span>
</div>
</div>
<div data-aos="fade-up" data-aos-duration="2000" id="condition_slug"></div>
<p id="nightOrDay" data-aos="fade-up" data-aos-duration="1000">...</p>
<strong>
<h1 id="temp" data-aos="zoom-out-down" data-aos-duration="2000">...</h1>
</strong>
<h3 id="description"></h3>
<div class="d-flex">
<div class="d-flex">
<span>Min:</span>
<strong>
<p id="min"> </p>
</strong>
</div>
<div class="d-flex">
<span>Max:</span>
<strong>
<p id="max"> </p>
</strong>
</div>
</div>
<div class="d-flex space-evenly">
<div class="card" data-aos="flip-left" data-aos-duration="1000">
<i class="wi wi-strong-wind"></i>
<p id="wind">...</h>
</div>
<div class="card" data-aos="flip-left" data-aos-duration="1000">
<i class="wi wi-humidity"></i>
<p id="humidity">...</p>
</div>
</div>
<div class="week" id="div1">
<!-- Create for Js -->
</div>
<script src="js/main.js?13"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js?15"></script>
<script>
AOS.init();
</script>
</body>
</html>