forked from projectshft/weather-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (52 loc) · 1.72 KB
/
index.html
File metadata and controls
55 lines (52 loc) · 1.72 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Weather forecast app</title>
</head>
<body>
<div class="container my-5 py-3">
<div class="row justify-content-center">
<div class="col-12 col-md-6">
<div class="text-center mb-4">
<h1>Weather Forecast</h1>
<hr />
</div>
<form id="search-form">
<div class="input-group mb-4 py-3">
<input
type="text"
id="search-query"
class="form-control"
placeholder="Enter City Name Here"
/>
<button type="submit" class="btn btn-primary search">
Search
</button>
</div>
</form>
<div class="weather row justify-content-center"></div>
</div>
</div>
</div>
<div class="container mt-4">
<div class="forecast row g-3 justify-content-center"></div>
</div>
<script src="config.js"></script>
<script src="main.js"></script>
</body>
</html>