-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 1.4 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-aFq/bzH65dt+w6FI2ooMVUpc+21e0SRygnTpmBvdBgSdnuTN7QbdgL+OapgHtvPp" crossorigin="anonymous">
<title>Weather App</title>
</head>
<body class="container-fluid bg-dark text-center mt-5 col-lg-4">
<h1 class="h1 mt-5 text-light">Know Weather of your city</h1>
<hr class="text-light">
<img src="https://thumbs.gfycat.com/MadeupCarefreeHen-max-1mb.gif" alt="" class="img-thumbnail mt-3 p-0">
<form action="/" method="post" class="mt-5 text-center">
<input type="text" name = "cityname" placeholder=" Enter city name" class="mt-5 input-group bg-dark-subtle p-1 rounded-2" >
<button type="submit" class="btn btn-primary mt-5">submit</button>
</form>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-heAjqF+bCxXpCWLa6Zhcp4fu20XoNIA98ecBC1YkdXhszjoejr5y9Q77hIrv8R9i"
crossorigin="anonymous"></script>
</body>
</html>