-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (49 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Dashboard</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header>Weather Dashboard</header>
<main class="container-fluid">
<section class="row">
<div id="search" class="col-3">
<div id="top">
<div>Search for a City:</div>
<input type="text" class="form-control" placeholder="Enter a City Here">
<button class="btn btn-primary" onclick="searchCoordsFunction()">Search</button>
</div>
<div id="bottom">
</div>
</div>
<div id="display" class="col-9">
<div id="today">
<!-- <div>Today:</div>
<div>Temp:</div>
<div>Wind:</div>
<div>Humidity:</div>
<div>UV Index:</div> -->
</div>
<div class="">
<h4>5-Day Forecast:</h4>
</div>
<div id="forecast" class="d-flex justify-content-between gap-3">
<div class="day1"></div>
<div class="day2"></div>
<div class="day3"></div>
<div class="day4"></div>
<div class="day5"></div>
</div>
</div>
</section>
</main>
<footer></footer>
<script src="./assets/js/script.js"></script>
</body>
</html>