-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (33 loc) · 1.9 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>
<head>
<title>Weather App</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<h1 class="text-center pt-3">What's the weather like? 🤔⛈</h1>
<div class = "container pt-5">
<div class="alert alert-primary" role="alert">
<div class="input-group mb-3">
<input id="fetch-city" type="text" class="form-control" placeholder="Enter city" aria-label="Recipient's username" aria-describedby="basic-addon2">
<div class="input-group-append">
<button id="city-button" class="btn btn-outline-primary" type="button">Click to know</button>
</div>
</div>
</div>
<p class="text-center"> (OR) </p>
<div class="text-center">
<button id="fetch-weather" type="button" class="btn btn-danger">CLICK HERE TO GET THE WEATHER AT YOUR LOCATION</button>
<p class="text-center">Please give permission for the location</p>
</div>
</div>
<div class="container pt-5">
<h1 class="text-center" id="answer"></h1>
<h2 class="text-center" id="wait"></h2>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>