-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (100 loc) · 3.29 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
99
100
101
102
103
<!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="icon" type="favicon.ico" text="⭐" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<title>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="Insert City..."
class="form-control"
id="city-input"
autocomplete="on"
/>
</div>
<div col="col-3">
<input
type="submit"
value="Search"
class="btn btn-info w-100"
/>
</div>
</div>
</form>
<div class="overview">
<h1 id="city"></h1>
<ul>
<li>Updated: <span id="date"></span></li>
</ul>
</div>
<div class="row">
<div class="col-6">
<div class="clearfix weather-temperature">
<img
src=""
alt=""
id="icon"
width="80%"
height="auto"
class="float-left"
/>
<div class="float-left">
<strong id="temperature"></strong>
<span class="units">
<a href="#" id="celsius-link" class="active">°C</a> |
<a href="#" id="fahrenheit-link" class="active">°F</a></span
>
</div>
</div>
</div>
<div class="col-6 class="text-md-left">
<ul>
<li id="description"></li>
<li>Humidity:<span id="humidity"></span>%</li>
<li>Wind:<span id="wind"></span>km/h</li>
</ul>
</div>
</div>
<div class="row weather-forecast" id="forecast">
</div>
</div>
<footer class="text-md-right">
<a
href="https://github.com/lenatheque/cool-weather-app"
target="_blank"
>Open-source code</a
>
by Lorena Alvarez <aside class="text-md-right">
<a href="https://www.linkedin.com/in/lorenaalvz/" target="_blank"
>LinkedIn</a
>
|
<a href="https://www.instagram.com/lena.codes/" target="_blank"
>Instagram</a
>
|
<a href="https://github.com/lenatheque/" target="_blank">GitHub</a>
</footer>
</div>
</div>
<script src="script.js"></script>
</body>
</html>