-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (111 loc) · 3.43 KB
/
index.html
File metadata and controls
111 lines (111 loc) · 3.43 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" cont +ent="width=device-width, initial-scale=1.0" />
<title>Weather-ON</title>
<link rel="stylesheet" href="src/styles.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"
></script>
<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=Baloo+2:wght@600&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Oi&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Sail&display=swap"
rel="stylesheet"
/>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<div class="container">
<p class="title">W-ON</p>
<form id="search-city">
<div class="row">
<div class="col-8">
<input
type="text"
class="form-control"
placeholder="Type a city"
aria-label="Search"
autocomplete="off"
fdprocessedid="0klmi8"
id="display-city"
/>
</div>
<div class="col-3">
<input id="button" type="submit" value="Search" />
</div>
<div class="col-1">
<input id="location" type="submit" value="📍" />
</div>
</div>
</form>
<h1 class="city-name">↺</h1>
<div class="row">
<div class="col-8 current">
<img
id="symbol"
src="https://em-content.zobj.net/source/microsoft-teams/363/sun_2600-fe0f.png"
width="200"
/>
</div>
<div class="col-4">
<span class="temperature" id="temperature">↺</span>
<span class="units">
<a href="#" id="cels">°C</a>
<p class="pipe">|</p>
<a href="#" id="fahr">°F</a>
</span>
</div>
</div>
<h2 id="time-date">↺</h2>
<h3 id="description" class="col-2">Feels like...</h3>
<span id="windspeed"
><p class="wind-icon">༄</p>
Wind</span
>
<span id="humidity"
><img
class="droplet"
src="https://em-content.zobj.net/thumbs/120/twitter/348/droplet_1f4a7.png"
width="40"
/>Humidity</span
>
<br />
<hr />
<div class="weather-forecast" id="forecast"></div>
<hr />
<button id="night-time">🌛</button>
<p class="conclusion">
<a
class="github"
href="https://github.com/BIONIChae/weather-app/tree/main/src"
target="_blank"
>Open-source code</a
>
by Chae👽
</p>
</div>
<script src="src/index.js"></script>
</body>
</html>