-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (91 loc) · 2.89 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
<!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
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link rel="stylesheet" href="src/style.css" />
<title>Weather</title>
</head>
<body>
<div class="container">
<div class="weather-widget-wrapper">
<div class="weather-widget">
<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"
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="weather-temp">
<img
src="https://ssl.gstatic.com/onebox/weather/64/sunny.png"
alt="Clear"
id="icon"
/>
<div>
<strong id="temperature"></strong
><span class="units">
<a href="#" class="disabled" id="fahrenheit-link">°F</a> |
<a href="#" id="celcius-link">°C</a>
</span>
</div>
</div>
</div>
<div class="col-6">
<ul>
<li>Humidity: <span id="humidity"></span>%</li>
<li>
Wind: <span id="wind"></span><span id="wind-units"> mph</span>
</li>
</ul>
</div>
</div>
<div class="weather-forecast" id="forecast"></div>
</div>
<small
><a href="https://github.com/calais/weather-widget-v2" target="_blank"
>Open source code</a
>
by Chrissy Addy. Hosted on
<a
href="https://mystifying-agnesi-8b9678.netlify.app/"
target="_blank"
>Netlify</a
>.</small
>
</div>
</div>
<script src="src/app.js"></script>
</body>
</html>