-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (98 loc) · 4.47 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
96
97
98
<!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="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="src/style.css">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link rel="stylesheet" href="media/cloudy.png">
<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=Fredoka:wght@300;400;500&family=Grape+Nuts&family=Padauk&family=Russo+One&family=Staatliches&display=swap" rel="stylesheet">
<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=Montserrat:wght@200;300&display=swap" rel="stylesheet">
<title>Weather App</title>
</head>
<body>
<img src="media/img.jpg" alt="" id="background-img">
<div class="weather-app-cntr">
<div class="container">
<div class="weather-app">
<h1>WEATHER BUG</h1>
<form action="" id="search-form">
<div class="row">
<div class="col-9">
<input
type="search"
placeholder="Enter city name"
class="form-control"
id="city-input"
autocomplete="off"
/>
</div>
<div class="col-3">
<input
class="btn btn-light"
id="search-btn"
type="submit"
value="Search"
/>
</div>
</div>
</form>
<div class="overview">
<h2 class="heading" id="city">Rotterdam</h2>
<ul>
<li id="date">
Friday 17:00
</li>
<li id="current-condition">
Clear
</li>
</ul>
<div class="row">
<div class="col-6">
<div class="clearfix weather-icon">
<img
id="icon"
src="media/cloudy.png"
alt="cloudy"
class="float-left"
/>
<div class="float-left">
<strong id="temperature-degree"></strong>
<span class="units"> °C
</span>
</div>
</div>
</div>
<div class="col-6">
<span>
<ul id="additional-info">
<li>
Feels like: <span id="feels-like"></span>°C
</li>
<li>
Humidity: <span id="humidity"></span>%
</li>
<li>
Wind Speed: <span id="wind-speed"></span> km/h
</li>
</ul>
</span>
</div>
</div>
</div>
<div class="weather-forecast" id="forecast"></div>
</div>
</div>
<small>
<a href="https://github.com/alineborak/vanilla-weather-app" target="blank">Open-source code </a> by Aline Bora-Kloppert
</small>
</div>
<script src="src/app.js"></script>
</body>
</html>