-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
51 lines (50 loc) · 2 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
<!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">
<title>Weather Dashboard</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<body>
<div class="bg-success">
<h1 class="text-center mb-2 p-2 text-light">Weather Dashboard</h1>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-3">
<form>
<div class="input-group m-2 pr-3">
<input type="text" class="form-control" id="citySearchInput" placeholder="Search weather in...">
<div class="input-group-append">
<button class="btn btn-outline-secondary" type="submit" id="citySearchButton"><i class="fas fa-search"></i></button>
</div>
</div>
</form>
<div class="w-100">
<ul class="list-group cityList mx-2 mt-3"></ul>
</div>
</div>
<div class="col-md-9">
<div class="card shadow m-2">
<div class="card-body cityToday">
</div>
</div>
<div class="m-2">
<h3> Five Day Forecast :</h3>
<div class="forecast row text-white">
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://kit.fontawesome.com/5ae46afe61.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>