-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (142 loc) · 4.68 KB
/
Copy pathindex.html
File metadata and controls
143 lines (142 loc) · 4.68 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!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" />
<link
rel="shortcut icon"
href="https://routeweather.netlify.app/images/logo@2x.png"
type="image/x-icon"
/>
<title>Weather</title>
<link rel="stylesheet" href="css/all.min.css" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/media.css" />
</head>
<body>
<main>
<nav class="navbar navbar-expand-lg">
<div class="container">
<a
class="navbar-brand d-flex align-items-center gap-3"
href="index.html"
>
<img
src="https://routeweather.netlify.app/images/logo@2x.png"
alt="logo-img"
class="brand-img"
/>
<div class="brand-name pt-3">
<h1 class="site-title mb-2">Weather</h1>
<small class="site-description"></small>
</div>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="nav-toggle-icon fa fa-bars"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="#">News</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Live Cameras</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Photos</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<section id="weather" class="py-5">
<div class="container">
<form action="#" class="location position-relative my-5">
<input
type="input"
class="location-field form-control"
placeholder="Find your location, Country, and Region"
/>
<button
type="submit"
id="findBtn"
class="position-absolute btn-style"
>
Find
</button>
</form>
<div id="weatherCards">
<div class="row">
<div class="col-lg-4 weather-card-1"></div>
<div class="col-lg-4 weather-card-2"></div>
<div class="col-lg-4 weather-card-3"></div>
</div>
</div>
</div>
</section>
<footer class="">
<div class="container">
<div class="row align-items-baseline justify-content-lg-between mb-3">
<div class="col-lg-8">
<form action="#" class="location position-relative mt-5 mb-3">
<input
type="input"
class="location-field form-control"
placeholder="Enter your email to subscribe..."
/>
<button
type="submit"
id="subscribeBtn"
class="position-absolute btn-style"
>
Subscribe
</button>
</form>
</div>
<div class="col-lg-3">
<ul class="d-flex gap-3">
<li>
<a href="#"><span class="fa-brands fa-facebook-f"></span></a>
</li>
<li>
<a href="#"><span class="fa-brands fa-twitter"></span></a>
</li>
<li>
<a href="#"
><span class="fa-brands fa-google-plus-g"></span
></a>
</li>
<li>
<a href="#"><span class="fa-brands fa-patreon"></span></a>
</li>
</ul>
</div>
</div>
<p class="text-white text-center">
Designed by Themezy. All rights reserved.
</p>
</div>
</footer>
</main>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/main.js"></script>
</body>
</html>