-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
230 lines (230 loc) · 12.1 KB
/
index.html
File metadata and controls
230 lines (230 loc) · 12.1 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plant Shop</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header class="p-3 bg-light shadow-sm">
<div class="container">
<nav class="d-flex align-items-center justify-content-between">
<a href="./" class="navbar-brand">
<img src="assets/img/logoMain.png" alt="Logo" height="40">
</a>
<ul class="nav">
<li class="nav-item"><a href="./" class="nav-link text-dark">Home</a></li>
<li class="nav-item"><a href="product.html" class="nav-link text-dark">Product</a></li>
<li class="nav-item"><a href="aboutUs.html" class="nav-link text-dark">About Us</a></li>
<li class="nav-item"><a href="contactUs.html" class="nav-link text-dark">Contact us</a></li>
</ul>
<div id="date-time" class="text-dark"></div>
</nav>
</div>
</header>
<main>
<div class="container">
<div class="row herobg">
<div class="col-12 form-container">
<form action="search-form">
<div class="mb-3">
<label for="light" class="form-label">Light Requirement</label>
<select name="light" id="light" class="form-select">
<option value="Sunlight">Sun Light</option>
<option value="Without sunlight">Without sunlight</option>
</select>
</div>
<div class="mb-3">
<label for="cLevel" class="form-label">Care Level</label>
<select name="cLevel" id="cLevel" class="form-select">
<option value="Hiht">High</option>
<option value="low">Low</option>
</select>
</div>
<div class="mb-3">
<label for="pFriendliness" class="form-label">Pet Friendliness</label>
<select name="pFriendliness" id="pFriendliness" class="form-select">
<option value="Yes">Yes</option>
<option value="No">No</option>
</select>
</div>
<button type="submit" class="btn btn-primary">Search Item</button>
</form>
</div>
</div>
</div>
<section class="about-blooming-oasis py-5">
<div class="container">
<h2 class="text-center mb-4">About Blooming Oasis</h2>
<p class="text-center">Welcome to Blooming Oasis, your one-stop shop for all things plants. We offer a wide variety of plants, from popular houseplants to curated collections, and provide detailed plant care guides to help you keep your plants healthy and thriving. Our mission is to bring the beauty of nature into your home and make plant care accessible and enjoyable for everyone.</p>
</div>
</section>
<section class="plant-collection py-5">
<div class="container">
<h2 class="text-center mb-4">Plant Collection</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card">
<img src="assets/img/product.webp" class="card-img-top product-img" alt="Plant 1">
<div class="card-body">
<h5 class="card-title">Plant 1</h5>
<p class="card-text">Description of Plant 1.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<img src="assets/img/product.webp" class="card-img-top product-img" alt="Plant 2">
<div class="card-body">
<h5 class="card-title">Plant 2</h5>
<p class="card-text">Description of Plant 2.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<img src="assets/img/product.webp" class="card-img-top product-img" alt="Plant 3">
<div class="card-body">
<h5 class="card-title">Plant 3</h5>
<p class="card-text">Description of Plant 3.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="popular-houseplants py-5">
<div class="container">
<h2 class="text-center mb-4">Popular HousePlants</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card">
<img src="assets/img/product.webp" class="card-img-top product-img" alt="Plant 4">
<div class="card-body">
<h5 class="card-title">Plant 4</h5>
<p class="card-text">Description of Plant 4.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<img src="assets/img/product.webp" class="card-img-top product-img" alt="Plant 5">
<div class="card-body">
<h5 class="card-title">Plant 5</h5>
<p class="card-text">Description of Plant 5.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<img src="assets/img/product.webp" class="card-img-top product-img" alt="Plant 6">
<div class="card-body">
<h5 class="card-title">Plant 6</h5>
<p class="card-text">Description of Plant 6.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="curated-collections py-5">
<div class="container">
<h2 class="text-center mb-4">Curated Collections</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card">
<img src="assets/img/product.webp" class="card-img-top product-img" alt="Plant 7">
<div class="card-body">
<h5 class="card-title">Plant 7</h5>
<p class="card-text">Description of Plant 7.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<img src="assets/img/product.webp" class="card-img-top product-img" alt="Plant 8">
<div class="card-body">
<h5 class="card-title">Plant 8</h5>
<p class="card-text">Description of Plant 8.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<img src="assets/img/product.webp" class="card-img-top product-img" alt="Plant 9">
<div class="card-body">
<h5 class="card-title">Plant 9</h5>
<p class="card-text">Description of Plant 9.</p>
<a href="#" class="btn btn-primary">View Details</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="plant-care-guides py-5">
<div class="container">
<h2 class="text-center mb-4">Plant Care Guides</h2>
<p class="text-center">Our plant care guides provide you with all the information you need to keep your plants healthy and thriving. From watering tips to light requirements, we cover everything you need to know to take care of your plants.</p>
</div>
</section>
</main>
<footer class="bg-light py-5">
<div class="container">
<div class="row">
<div class="col-md-4 mb-4">
<h5>Social Media</h5>
<ul class="list-unstyled">
<li><a href="#" class="text-dark">Facebook</a></li>
<li><a href="#" class="text-dark">Twitter</a></li>
<li><a href="#" class="text-dark">Instagram</a></li>
<li><a href="#" class="text-dark">LinkedIn</a></li>
</ul>
</div>
<div class="col-md-4 mb-4">
<h5>Quick Links</h5>
<ul class="list-unstyled">
<li><a href="./" class="text-dark">Home</a></li>
<li><a href="product.html" class="text-dark">Product</a></li>
<li><a href="aboutUs.html" class="text-dark">About Us</a></li>
<li><a href="#" class="text-dark">Contact Us</a></li>
</ul>
</div>
<div class="col-md-4 mb-4">
<h5>Subscribe</h5>
<form action="subscribe-form" method="post">
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" name="email" placeholder="Enter your email">
</div>
<button type="submit" class="btn btn-primary">Subscribe</button>
</form>
</div>
</div>
</div>
</footer>
<!-- Bootstrap JS Bundle-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<script src="assets/js/index.js"></script>
<script>
function updateDateTime() {
const now = new Date();
const dateTimeString = now.toLocaleString();
document.getElementById('date-time').textContent = dateTimeString;
}
setInterval(updateDateTime, 1000);
updateDateTime();
</script>
</body>
</html>