-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<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.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css"
/>
<style>
body {
width: 100%;
height: 100vh;
background-image: url(./assets/images/pexels-stein-egil-liland-6007906.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
color: white;
}
</style>
</head>
<body>
<div>
<div class="container">
<h1 class="text-center pt-2">Weather</h1>
<div class="search">
<form class="d-flex p-5 justify-content-center">
<input
class="form-control text-light me-2 w-50 bg-transparent border-5 fs-3"
id="city"
type="text"
placeholder="Enter a city "
/>
<button class="btn btn-outline-primary text-light ps-3 pe-3">
Search
</button>
</form>
</div>
<div id="result" class="mt-5"></div>
</div>
</div>
</body>
<script src="./main.js"></script>
</html>