-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (99 loc) · 4.7 KB
/
index.html
File metadata and controls
111 lines (99 loc) · 4.7 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!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">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="Assets/style.css">
<title>Weather Dashboard</title>
</head>
<body>
<nav class="navbar">
<h1><i class="fas fa-cloud-sun-rain"></i> <span class="bold">Weather</span> Dashboard</h1>
</nav>
<div class="container-fluid main-div">
<!-- Search Div-->
<div class="row">
<div id="search-box" class="col-lg-3 col-md-12 col-sm-12">
<h2>Search for a City:</h2>
<!-- Search Bar -->
<div class="input-group mb-3">
<form id="search-form" class="form-inline"></form>
<input id="search-input" type="text" class="form-control">
<div class="input-group-append">
<button class="btn btn-outline-secondary" type="button" id="search-button"><i
class="fas fa-search"></i></button>
</div>
</form>
</div>
<!--List of Cities-->
<div id="city-list">
<ul class="list-group" id="list-group">
</ul>
</div>
</div>
<!-- Weather Div-->
<div id="weather-box" class="col-lg-9 col-md-12 col-sm-12">
<!-- Searched City Current Weather Div-->
<div id="city-box">
</div>
<!-- Five Day Forecast-->
<div id="five-day-box">
<br>
<h3 class="bold">5-Day Forecast:</h3>
<br>
<div class="five-day-row">
<div class="row">
<!-- Five Day Weather Cards-->
<div class="col-1"></div>
<div class="col-lg-2 col-md-12 col-sm-12 text-center">
<div class="card">
<div id="div0" class="card-body">
</div>
</div>
</div>
<div class="col-lg-2 col-md-12 col-sm-12 text-center">
<div class="card">
<div id="div1" class="card-body">
</div>
</div>
</div>
<div class="col-lg-2 col-md-12 col-sm-12 text-center">
<div class="card">
<div id="div2" class="card-body">
</div>
</div>
</div>
<div class="col-lg-2 col-md-12 col-sm-12 text-center">
<div class="card">
<div id="div3" class="card-body">
</div>
</div>
</div>
<div class="col-lg-2 col-sm-12 text-center">
<div class="card">
<div id="div4" class="card-body">
</div>
</div>
</div>
<div class="col-1"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<p>Made with ❤ by <a href="https://github.com/rosajen27">Jennifer Rosa</a></p>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="Assets/script.js"></script>
</body>
</html>