-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (65 loc) · 2.76 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous" type="text/css"/>
<!-- Bootswatch Theme -->
<link href="https://bootswatch.com/4/darkly/bootstrap.css" rel="stylesheet" type="text/css"/>
<!-- Font Family -->
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap" rel="stylesheet">
<!-- css link -->
<link rel="stylesheet" href="./css/styles.css" type="text/css">
<title>Weather Application</title>
</head>
<body>
<!-- main container -->
<nav
class="navbar navbar-expand-lg navbar-dark bg-success d-flex justify-content-center mb-3" >
<a class="navbar-brand" href="#index.html">Weather Dashboard</a>
</nav>
<!-- main container -->
<div class="app-wrap">
<header>
<input type="text" class="search-box" placeholder="Search for a city...">
<!-- <input type="submit" class="button grow" Id="button"> -->
</header>
<div class="recent">
<ul class="recentSearches">
<li>New York</li>
<li>Chicago</li>
<li>London</li>
<li>Seattle</li>
</ul>
</div>
<div id="Current" class="current newDay">
<section class="location">
<div class="icon"></div>
<div Id="name" class="city name"></div>
<div Id="date" class="date"></div>
<div class="temp"></div>
<div class="weather"></div>
<div class="high-low"></div>
</section>
</div>
<div class="seconday-title py-3">
<h1>5-Day Forecast</h1>
</div>
<div id="forecast-container" class="fiveDay">
</div>
<section class="past">
<div class="recentSearches"></div>
</section>
</div>
<!-- end main container -->
<!-- jquery, Bootstrap Js -->
<script src="./js/jquery.3.5.1.js" type="text/javascript"></script>
<script src="./js/bootstrap.min.js" type="text/javascript"></script>
<!-- Moment -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<!-- main js -->
<script src="./js/script.js" type="text/javascript"></script>
<script src="./js/api.js" type="text/javascript"></script>
</body>
</html>