-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tag Keywords -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta charset="UTF-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="A weather forecast web application">
<meta name="keywords" content="weather,forecast, project, website, home, about,web,we-developer, developer">
<meta name="author" content="Dikshita Kambri">
<!-- Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Cabin:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="CSS/style.css">
<title>Weather Forecast</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<h1 class="text-center" style="font-size: 50px;">Weather Forecast</h1>
</div>
</div>
</div>
<div class="conatiner" style="padding: 0px 20px;">
<div class="row">
<div class="col-12">
<Form action="/" method="POST" class="text-center">
<label>City:</label>
<input name="city">
<button class="btn btn-dark btn-md" type="submit">Go</button>
</Form>
</div>
</div>
</div>
<script type='text/javascript' src='config.js'></script>
</body>
</html>