-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 1.56 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
<!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/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" />
<title>Document</title>
</head>
<body>
<div class="container my-4 mx-auto text-muted">
<h1 class="my-1 text-center text-muted">Weather Forecast</h1>
<form class="my-1 text-center text-muted">
<label for="city" class="my-3">Enter a location for weather information</label>
<input type="text" name="city" class="form-control p-4" />
</form>
<div class="card my-3 shadow-lg rounded d-none">
<img src="https://via.placeholder.com/400x300" alt="" class="time card-img-top" />
<div class="icon bg-light mx-auto text-center">
<!-- icon -->
<img src="" alt="" />
</div>
<div class="text-center text-uppercase text-muted details">
<h1 class="my-4">city name</h1>
<div class="my-3">weather conditions</div>
<div class="display-2 my-4">
<span>temp</span>
<span>°C</span>
</div>
</div>
</div>
</div>
<script src="scripts/forecast.js"></script>
<script src="scripts/app.js"></script>
</body>
</html>