-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
<!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="stylesheet" href="src/style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<title>Weather App</title>
</head>
<body>
<div class="container">
<div class="temperature-text-wrapper">
<div class="change-city-text">
Change city
<form class="change-city-form" id="change-city-form">
<input
class="city-input"
id="change-city-input"
type="text"
autofocus="off"
placeholder="Type a city..."
/>
</form>
<h3><span id="day"></span><span id="time"></span></h3>
<h3 id="date"></h3>
<h4 id="weather-description"></h4>
<div id="current-location"><a class="current-location" href="#">Current Location</a></div>
</div>
</div>
<h1> <span id="city-title">City pending...</span> <span id="country-title"></span> </h1>
<div class="current-day-wrapper">
<h2 id="temperature">⌛</h2>
<div class="temp-measurement-celcius">
<a id="celcius-temp" class="celcius-temp" href="#">°C</a>
</div>
<div class="temp-measurement-fahren">
<a id="fahren-temp" class="fahren-temp remove-underline" href="#">°F</a>
</div>
<div class="main-weather-emoji-div">
<img
class="main-weather-emoji"
src="Images/Sun emoji.png"
alt="#"
id="icon"
/>
</div>
</div>
<div id="forecast"></div>
</div>
<footer class="footer">Coded by Alexander Perez-Davies || <a target="_blank" class="footer-link" href="https://github.com/AlexPD93/my-weather-app">Open-sourced on Github</a></footer>
</div>
</div>
</div>
<script src="src/script.js"></script>
</body>
</html>