-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (88 loc) · 3.48 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
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
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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=Mooli&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://kit.fontawesome.com/141df55af4.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="src/styles.css">
<title>She Weather Forecasts</title>
</head>
<body>
<div class="main-container">
<form id="search-form">
<input type="text" placeholder="Find a city" id="find-city" autofocus="on" autocomplete="off">
<input type="submit" id="btn-search" value="search">
</form>
<div class="container">
<div id="actual-city"> Palermo (Italy) </div>
<div class="currentDate" id="current-date"> Monday 25/09/23 </div>
<div class="degrees-container">
<span class="degrees" id="degrees"> 27 </span>
<span id="units">
<a href="#" id="celsius-d">°C</a>
<!-- <a href="#" id="fahrenheit-d">°F</a> -->
</span>
</div>
<i class="fa-solid fa-sun sun" style="color: #f5f92f;"></i>
<i class="fa-solid fa-cloud-sun cloud"></i>
<div class="container2">
<h2>Weekly Forecast</h2>
<div class="Monday">
<h4>
Mon
</h4>
<i class="fa-solid fa-sun mon"></i>
</div>
<div class="Tuesday">
<h4>
Tue
</h4>
<i class="fa-solid fa-cloud-sun tue"></i>
</div>
<div class="Wednesday">
<h4>
Wed
</h4>
<i class="fa-solid fa-cloud wed"></i>
</div>
<div class="Thursday">
<h4>
Thu
</h4>
<i class="fa-solid fa-cloud-sun-rain thu"></i>
</div>
<div class="Friday">
<h4>
Fri
</h4>
<i class="fa-solid fa-cloud-rain fri"></i>
</div>
<div class="Saturday">
<h4>
Sat
</h4>
<i class="fa-solid fa-cloud-showers-heavy sat"></i>
</div>
<div class="Sunday">
<h4>
Sun
</h4>
<i class="fa-solid fa-cloud-bolt sun"></i>
</div>
</div>
</div>
<footer>
Coded with 💟 in 2023 by
<a id="linkedin" href="https://www.linkedin.com/in/vivianadileonardo/" target="_blank">
Viviana Di Leonardo
</a>
</footer>
<script src="/src/index.js"></script>
</body>
</html>