-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (88 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=
, initial-scale=1.0"
/>
<title>Weather</title>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="src/style.css" />
</head>
<body>
<div class="container">
<div class="weather-app-wrapper">
<div class="weather-app">
<div class="overview">
<form id="search-form" class="mb-3">
<div class="row">
<div class="col-9">
<input
type="search"
place
holder="Type a city.."
class="form-control"
id="city-input"
/>
</div>
<div class="col-3">
<input
type="submit"
value="search"
class="btn btn-primary w-100"
/>
</div>
</div>
</form>
<h1 id="city"></h1>
<ul>
<li id="date"></li>
<li id="description"></li>
</ul>
</div>
<div class="row">
<div class="col-6">
<div class="clearfix weather-temperature">
<img
src="https://ssl.gstatic.com/onebox/weather/64/partly_cloudy.png"
alt="cloudy"
id="icon"
class="float-left"
/>
<strong id="temperature"></strong><span class="units">°F</span>
</div>
</div>
<div class="col-6">
<ul>
<li>Humidity: <span id="humidity"></span>%</li>
<li>Wind: <span id="wind"></span> m/h</li>
</ul>
</div>
</div>
<div id="forecast"></div>
</div>
<small>
<a href="https://github.com/kkgre257/Vanilla-Weather" target="_blank">
Open-source code</a
>
by Kindra Greenawalt
</small>
</div>
</div>
<script src="src/app.js"></script>
</body>
</html>