-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (51 loc) · 2.14 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://kit.fontawesome.com/ca89a4b9f5.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/style.css">
<title>Weather Dashboard</title>
</head>
<body>
<div class="bg-dark pt-2 pb-2">
<div class="container">
<h1 class="text-center text-white">Weather Dashboard</h1>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-3 bg-light pt-3 pb-7">
<h4>Search for a city:</h4>
<div class="input-group mb-3">
<input id="myCity" type="text" class="form-control" placeholder="City Name"
class="input-group-append">
<button id="searchBtn" class="btn btn-primary" type="button" id="button-addon2"><i
class="far fa-search"></i></button>
</div>
<button class="btn btn-danger btn-block" id="clear">Clear History</button>
<div class="card">
<ul class="list-group list-group-flush list">
</ul>
</div>
</div>
<div class="col-lg-9">
<h1>Current Weather</h1>
<div id="currentCity" class="mt-4">
<span></span>
</div>
</div>
</div>
<div class="mt-9 col-md-12">
<h4 id="forecastH4" class="mt-12 hide">5-Days Weather Forecasting:</h4>
<div id="forecast" class="row">
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./assets/script.js"></script>
</body>
</html>