-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (81 loc) · 2.54 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
<!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" />
<title>Weather App</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="card">
<div class="card-body bg-transparent">
<div class="card-body bg-transparent">
<form>
<div class="row">
<div class="col-1">
<label id="location" class="location">🔎</label>
</div>
<div class="col-6">
<input
type="search"
placeholder="Enter your location..."
autofocus="on"
autocomplete="off"
id="search-text-input"
class="form-control shadow-sm"
/>
</div>
<div class="col-5">
<input type="submit" value="Search" class="btn btn-info" />
<button
id="current-location-button"
class="btn btn-info w-10"
>
📍
</button>
</div>
</div>
</form>
</div>
<br />
<div class="row">
<div class="col-7">
<h1></h1>
<h2>Sunday 16th April 18:00pm</h2>
<ul>
<li><div id="weather" class="weather-temperature"></div></li>
<li>
<div id="description" class="description"></div>
</li>
</ul>
</div>
<div class="col-5">
<img src="sunicon.jpeg" width="200px" />
</div>
</div>
<div class="row"></div>
<br />
</div>
</div>
<footer>
<a
class="Find-Out-More"
href="https://github.com/aiacurto/weather-app"
target="_blank"
>
Coded by Adelina Iacurto. View on GitHub.</a
>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>