-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (79 loc) · 2.84 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
<head>
<title>Weather App</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/ceb9c559da.js" 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=Oxygen:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<h5 class="brand-name">Weather App</h5>
<form name="weather-form" id="weather-form" method="post">
<input class="placeholder" type="text" name="city" placeholder="Search for a city">
<input class="button" type="submit" value="Weatherize">
</form>
<h6 class="sponsor">Powered by OpenWeather</h6>
</div>
<h5 id="error"></h5>
<div class="current-weather">
<h3 class="title" id="city"></h3>
<div class="weather">
<div class="first-info">
<h4 id="temperature"></h4>
<i id="icon"></i>
</div>
<div class="v-bar"></div>
<div class="more-info">
<p id="feels_like"></p>
<p id="humidity"></p>
<p id="description"></p>
<p id="wind"></p>
</div>
</div>
</div>
<div class="weather-forecast">
<h3>4 days forecast</h3>
<div class="forecast">
<div class='division'>
<div class="forecast-day" id="day0">
<h5></h5>
<i></i>
<h5></h5>
<h5></h5>
</div>
<div class="forecast-day" id="day1">
<h5></h5>
<i></i>
<h5></h5>
<h5></h5>
</div>
</div>
<div class="division">
<div class="forecast-day" id="day2">
<h5></h5>
<i></i>
<h5></h5>
<h5></h5>
</div>
<div class="forecast-day" id="day3">
<h5></h5>
<i></i>
<h5></h5>
<h5></h5>
</div>
</div>
</div>
</div>
<footer>
<h6>© Arthur Meyniel 2022 - All rights reserved.</h6>
<div class="icons">
<a href="https://www.linkedin.com/in/arthurmeyniel/" target="_blank"><i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://github.com/ArthurMynl" target="blank"><i class="fa-brands fa-square-github"></i></a>
</div>
</footer>
<script src="./weather.js"></script>
</body>