-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
522 lines (436 loc) · 24.3 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
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== FAVICON ===============-->
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon">
<!--=============== REMIX ICONS ===============-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<title>PlantIT Website</title>
</head>
<body>
<!--==================== HEADER ====================-->
<header class="header" id="header">
<nav class="nav container">
<a href="#" class="nav__logo">
<i class="ri-leaf-line nav__logo-icon"></i> PlantIT
</a>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link active-link">Home</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="#products" class="nav__link">Products</a>
</li>
<li class="nav__item">
<a href="#faqs" class="nav__link">FAQs</a>
</li>
<li class="nav__item">
<a href="#contact" class="nav__link">Contact Us</a>
</li>
</ul>
<div class="nav__close" id="nav-close">
<i class="ri-close-line"></i>
</div>
</div>
<div class="nav__btns">
<!-- Theme change button -->
<i class="ri-moon-line change-theme" id="theme-button"></i>
<div class="nav__toggle" id="nav-toggle">
<i class="ri-menu-line"></i>
</div>
</div>
</nav>
</header>
<main class="main">
<!--==================== HOME ====================-->
<section class="home" id="home">
<div class="home__container container grid">
<img src="assets/img/homepagetwo-overlay.png" alt="" class="home_img">
<div class="home__data">
<h1 class="home__title">
Let's Grow <br> TOGETHER
</h1>
<p class="home__description">
We take care of your plants, everyday and always. We also help to keep track of your plants based on the species, nutrient requirements, scheduled watering hours.
</p>
<a href="#about" class="button button--flex">
Explore <i class="ri-arrow-right-down-line button__icon"></i>
</a>
</div>
<div class="home__social">
<span class="home__social-follow">Follow Us</span>
<div class="home__social-links">
<a href="https://www.facebook.com/" target="_blank" class="home__social-link">
<i class="ri-facebook-fill"></i>
</a>
<a href="https://www.instagram.com/" target="_blank" class="home__social-link">
<i class="ri-instagram-line"></i>
</a>
<a href="https://twitter.com/" target="_blank" class="home__social-link">
<i class="ri-twitter-fill"></i>
</a>
</div>
</div>
</div>
</section>
<!--==================== ABOUT ====================-->
<section class="about section container" id="about">
<div class="about__container grid">
<img src="assets/img/Cartoonplant.png" alt="" class="about__img">
<div class="about__data">
<h2 class="section__title about__title">
Who we really are & <br> why choose us
</h2>
<p class="about__description">
Each and everyone of us is responsible for this change, and so do we hold responsibility to make a positive impact.
</p>
<div class="about__details">
<p class="about__details-description">
<i class="ri-checkbox-fill about__details-icon"></i>
We have app to alert for the Watering Technology.
</p>
<p class="about__details-description">
<i class="ri-checkbox-fill about__details-icon"></i>
We sell products homegrown by Women.
</p>
<p class="about__details-description">
<i class="ri-checkbox-fill about__details-icon"></i>
We always come over for a check-up after sale.
</p>
<p class="about__details-description">
<i class="ri-checkbox-fill about__details-icon"></i>
100% money back guaranteed.
</p>
</div>
<a href="#" class="button--link button--flex">
Shop Now <i class="ri-arrow-right-down-line button__icon"></i>
</a>
</div>
</div>
</section>
<!--==================== STEPS22 ====================-->
<section class="steps section container">
<div class="steps__bg">
<h2 class="section__title-center steps__title">
Track the status of plants here
</h2>
<div class="steps__container grid">
<div class="steps__card">
<img src="assets/img/banana_plant.jpg" alt="" class="plant_img"></img>
<h3 class="steps__card-title">Banana Plant</h3>
<p>Nutrients Value:</p>
<div class="w3-light-grey w3-round">
<div class="w3-container w3-round w3-blue" style="width:25%">25%</div>
</div>
<br>
<p>Water plant in:</p>
<div class="w3-light-grey w3-round">
<div class="w3-container w3-round w3-blue" style="width:25%">3.5hrs</div>
</div>
</div>
<div class="steps__card">
<img src="assets/img/rose_plant1.jpg" alt="" class="plant_img"></img>
<h3 class="steps__card-title">Rose Plant</h3>
<p>Nutrients Value:</p>
<div class="w3-light-grey w3-round">
<div class="w3-container w3-round w3-blue" style="width:25%">55%</div>
</div>
<br>
<p>Water plant in:</p>
<div class="w3-light-grey w3-round">
<div class="w3-container w3-round w3-blue" style="width:25%">3.0hrs</div>
</div>
</div>
<div class="steps__card">
<img src="assets/img/snake_plant.jpeg" alt="" class="plant_img"></img>
<h3 class="steps__card-title">Snake Plant</h3>
<p>Nutrients Value:</p>
<div class="w3-light-grey w3-round">
<div class="w3-container w3-round w3-blue" style="width:25%">40%</div>
</div>
<br>
<p>Water plant in:</p>
<div class="w3-light-grey w3-round">
<div class="w3-container w3-round w3-blue" style="width:25%">1.0hrs</div>
</div>
</div>
</div>
</div>
</section>
<!--==================== PRODUCTS ====================-->
<section class="product section container" id="products">
<h2 class="section__title-center">
Check out our <br> products
</h2>
<p class="product__description">
Here are some homegrown products by the women of our society. All the products are organic, in excellent
quality and have a long life span. Buy and enjoy best quality.
</p>
<div class="product__container grid">
<article class="product__card">
<div class="product__circle"></div>
<img src="assets/img/Homegrown1.png" alt="" class="product__img">
<h3 class="product__title">Organic Hair Serum</h3>
<span class="product__price">$20.99</span>
<button class="button--flex product__button">
<i class="ri-shopping-bag-line"></i>
</button>
</article>
<article class="product__card">
<div class="product__circle"></div>
<img src="assets/img/Homegrown2.png" alt="" class="product__img">
<h3 class="product__title">Organic Vegan Bowl</h3>
<span class="product__price">$11.99</span>
<button class="button--flex product__button">
<i class="ri-shopping-bag-line"></i>
</button>
</article>
<article class="product__card">
<div class="product__circle"></div>
<img src="assets/img/product3.png" alt="" class="product__img">
<h3 class="product__title">Aloe Vera Plant</h3>
<span class="product__price">$7.99</span>
<button class="button--flex product__button">
<i class="ri-shopping-bag-line"></i>
</button>
</article>
<article class="product__card">
<div class="product__circle"></div>
<img src="assets/img/Homegrown3.png" alt="" class="product__img">
<h3 class="product__title">Plant Based FaceMasks</h3>
<span class="product__price">$5.99</span>
<button class="button--flex product__button">
<i class="ri-shopping-bag-line"></i>
</button>
</article>
<article class="product__card">
<div class="product__circle"></div>
<img src="assets/img/Homegrown5.png" alt="" class="product__img">
<h3 class="product__title">Organic Pulses</h3>
<span class="product__price">$18.99</span>
<button class="button--flex product__button">
<i class="ri-shopping-bag-line"></i>
</button>
</article>
<article class="product__card">
<div class="product__circle"></div>
<img src="assets/img/product6.png" alt="" class="product__img">
<h3 class="product__title">Green Plant</h3>
<span class="product__price">$8.99</span>
<button class="button--flex product__button">
<i class="ri-shopping-bag-line"></i>
</button>
</article>
</div>
</section>
<!--==================== QUESTIONS ====================-->
<section class="questions section" id="faqs">
<h2 class="section__title-center questions__title container">
Commonly asked questions <br>
</h2>
<div class="questions__container container grid">
<div class="questions__group">
<div class="questions__item">
<header class="questions__header">
<i class="ri-add-line questions__icon"></i>
<h3 class="questions__item-title">
How Many Times a Week Should I Water After I Fertilize
</h3>
</header>
<div class="questions__content">
<p class="questions__description">
For most houseplants, you should be watering on the plants needs rather than a schedule - regardless of when you fertilized. Even the app in your phone will remind you about the right time.
</p>
</div>
</div>
<div class="questions__item">
<header class="questions__header">
<i class="ri-add-line questions__icon"></i>
<h3 class="questions__item-title">
What causes leaves to become pale?
</h3>
</header>
<div class="questions__content">
<p class="questions__description">
Plants are easy way to add color energy and transform your
space but which planet is for you. Choosing the right plant.
</p>
</div>
</div>
<div class="questions__item">
<header class="questions__header">
<i class="ri-add-line questions__icon"></i>
<h3 class="questions__item-title">
What causes brown crispy leaves?
</h3>
</header>
<div class="questions__content">
<p class="questions__description">
Plants are easy way to add color energy and transform your
space but which planet is for you. Choosing the right plant.
</p>
</div>
</div>
</div>
<div class="questions__group">
<div class="questions__item">
<header class="questions__header">
<i class="ri-add-line questions__icon"></i>
<h3 class="questions__item-title">
How do i choose a plant?
</h3>
</header>
<div class="questions__content">
<p class="questions__description">
Plants are easy way to add color energy and transform your
space but which planet is for you. Choosing the right plant.
</p>
</div>
</div>
<div class="questions__item">
<header class="questions__header">
<i class="ri-add-line questions__icon"></i>
<h3 class="questions__item-title">
How do I trust the purity of the product?
</h3>
</header>
<div class="questions__content">
<p class="questions__description">
The products are grown by the women who nurture them just in the same way they nurture their babies. The products are organic as well as homegrown.
</p>
</div>
</div>
<div class="questions__item">
<header class="questions__header">
<i class="ri-add-line questions__icon"></i>
<h3 class="questions__item-title">
Why are gnats flying around my plant?
</h3>
</header>
<div class="questions__content">
<p class="questions__description">
Plants are easy way to add color energy and transform your
space but which planet is for you. Choosing the right plant.
</p>
</div>
</div>
</div>
</div>
</section>
<!--==================== CONTACT ====================-->
<!-- <section class="contact section container" id="contact">
<div class="contact__container grid">
<div class="contact__box">
<h2 class="section__title">
Reach out to us today <br> via any of the given <br> information
</h2>
<div class="contact__data">
<div class="contact__information">
<h3 class="contact__subtitle">Call us for instant support</h3>
<span class="contact__description">
<i class="ri-phone-line contact__icon"></i>
+999 888 777
</span>
</div>
<div class="contact__information">
<h3 class="contact__subtitle">Write us by mail</h3>
<span class="contact__description">
<i class="ri-mail-line contact__icon"></i>
</span>
</div>
</div>
</div>
<form action="" class="contact__form">
<div class="contact__inputs">
<div class="contact__content">
<input type="email" placeholder=" " class="contact__input">
<label for="" class="contact__label">Email</label>
</div>
<div class="contact__content">
<input type="text" placeholder=" " class="contact__input">
<label for="" class="contact__label">Subject</label>
</div>
<div class="contact__content contact__area">
<textarea name="message" placeholder=" " class="contact__input"></textarea>
<label for="" class="contact__label">Message</label>
</div>
</div>
<button class="button button--flex">
Send Message
<i class="ri-arrow-right-up-line button__icon"></i>
</button>
</form>
</div>
</section> -->
</main>
<!--==================== FOOTER ====================-->
<footer class="footer section">
<div class="footer__container container grid">
<div class="footer__content">
<a href="#" class="footer__logo">
<i class="ri-leaf-line footer__logo-icon"></i> PlantIT
</a>
<div class="footer__subscribe">
<input type="email" placeholder="Enter your email" class="footer__input">
</div>
</div>
<div class="footer__content">
<h3 class="footer__title">Our Address</h3>
<ul class="footer__data">
<li class="footer__information">Squires Building</li>
<li class="footer__information">Virginia Tech - 43210</li>
<li class="footer__information">123-456-789</li>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">Contact Us</h3>
<ul class="footer__data">
<li class="footer__information">+999 888 777</li>
<div class="footer__social">
<a href="https://www.facebook.com/" class="footer__social-link">
<i class="ri-facebook-fill"></i>
</a>
<a href="https://www.instagram.com/" class="footer__social-link">
<i class="ri-instagram-line"></i>
</a>
<a href="https://twitter.com/" class="footer__social-link">
<i class="ri-twitter-fill"></i>
</a>
</div>
</ul>
</div>
<div class="footer__content">
<h3 class="footer__title">
We accept all credit cards
</h3>
<div class="footer__cards">
<img src="assets/img/card1.png" alt="" class="footer__card">
<img src="assets/img/card2.png" alt="" class="footer__card">
<img src="assets/img/card3.png" alt="" class="footer__card">
<img src="assets/img/card4.png" alt="" class="footer__card">
</div>
</div>
</div>
<p class="footer__copy">© Bedimcode. All rigths reserved</p>
</footer>
<!--=============== SCROLL UP ===============-->
<a href="#" class="scrollup" id="scroll-up">
<i class="ri-arrow-up-fill scrollup__icon"></i>
</a>
<!--=============== SCROLL REVEAL ===============-->
<script src="assets/js/scrollreveal.min.js"></script>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>