-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 1.81 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
<!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" />
<!-- BootStrap Cdn -->
<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"
/>
<!-- custom Style -->
<link rel="stylesheet" href="style.css" />
<title>Weather App</title>
</head>
<body>
<div class="container my-5 mx-auto text-center">
<h1 class="text-muted my-4">Weather App</h1>
<form class="change-location my-4 text-muted">
<label for="city">Enter a Location for Weather information</label>
<input type="text" name="city" class="form-control p-4" />
</form>
<div class="d-none justify-content-center spinner">
<div class="spinner-border" role="status">
<span class="sr-only" id="loading"></span>
</div>
</div>
<div class="card shadow-lg rounded d-none">
<img
src="https://via.placeholder.com/400x300"
class="time card-img-top"
/>
<div class="icon bg-light mx-auto">
<!-- icon -->
<img src="" alt="" />
</div>
<div class="text-muted text-uppercase text-center details">
<h5 class="my-3">City name</h5>
<div class="my-3">Weather condition</div>
<div class="display-4 my-4">
<span>temp</span>
<span>°C</span>
</div>
</div>
</div>
</div>
<!-- scripts -->
<script src="scripts/forecast.js"></script>
<script src="scripts/app.js"></script>
<!-- scripts -->
</body>
</html>