-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (69 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link rel="stylesheet" href="src/style.css" />
<title>Vanilla Weather App</title>
</head>
<body>
<div class="container">
<div class="weather-app-wrapper">
<div class="weather-app">
<form id="search-form" class="mb-3">
<div class="row">
<div class="col-9">
<input type="search" placeholder="Type a city.." class="form-control" id="city-input" autocomplete="off" />
</div>
<div class="col-3">
<input type="submit" value="Search" id="btn" class="btn btn-primary w-100"/>
</div>
</div>
</form>
<div class="overview">
<h1 id="city"></h1>
<ul>
<li>Last updated: <span id="date"></span></li>
<li id="description"></li>
</ul>
</div>
<div class="row">
<div class="col-6">
<div class="clearfix weather-temperature">
<img src="" alt="Clear" id="icon" class="float-left" />
<div class="float-left">
<strong id="temperature"></strong
><span class="units"> °C</span>
</div>
</div>
</div>
<div class="col-6">
<ul>
<li>Humidity: <span id="humidity"></span>%</li>
<li>Wind: <span id="wind"></span> km/h</li>
</ul>
</div>
</div>
<div class="weather-forecast" id="forecast"></div>
<small id="last">
<a
href="https://github.com/hamida-ashna/vanilla_weather_app"
target="_blank"
>Open source code</a
>
by Hamida Ashna 👩💻
</small>
</div>
</div>
</div>
<script src="src/app.js"></script>
</body>
</html>