-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (103 loc) · 4.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plants Shop 656-team-04</title>
</head>
<body>
<header class="header">
<nav class="neader__top-nav">
<div class="header__top-nav__logo">
<img width="162" src="img/logo.svg" alt="PlantLand logo">
</div>
<div class="header__top-nav__menu">
<a href="#">About us</a>
<a href="#">Plants</a>
<a href="#">Pick of the Monce</a>
<a href="#">Pricing</a>
<a href="#">Testimonials</a>
<a href="#">Contact us</a>
</div>
</nav>
<div class="header__baner">
<p class="header__banner-smallsubheading">―PLANTLAND―</p>
<h1>Make Your Home Green</h1>
<p class="header__baner-sudheading">Check out our store in New York with the best indoor & outdoor plants
that are suitable for growing exactly in your conditions.</p>
<button>BEST PLANS</button>
<button>LEAN MORE</button>
</div>
</header>
<main>
<!--section Our Plants-->
<p class="ourplants_smallsubheading">―WHAT WE OFFER―</p>
<h2>Our Plants</h2>
<p class="ourplants_subheading">We sell both indoor and outdoor varieties of plants.</p>
<div class="plants_types">
<div class="plants_location">
<a href="#">INDOOR</a>
<a href="#">OUTDOOR</a>
</div>
<div class="plants_content">
<div class="plants_show">
<article class="plants_show_card">
<img width="300" src="img/Small_Ornamental_Plants.webp" alt="Small Ornamental Plants">
<h3>Outdoor Flowers</h3>
<p>Flowers form the basis of the exterior and are the first to catch the eye. Charming anemones,
freesia, lilies will provide brightness and a pleasant aroma. Choose your outdoor flower!
</p>
</article>
<article class="plants_show_card">
<img width="300" src="img/Indoor_Trees.webp" alt="Indoor Trees">
<h3>Indoor Trees</h3>
<p>It's a beautiful and original option for a large room. A small indoor tree will add some zest
to the office or a large living room. Large dracaena, ficus, alocasia will be a great option
for
your space.</p>
</article>
<article class="plants_show_card">
<img width="200" src="img/Plants_in_Florarium.webp" alt="Plants in Florarium">
<h3>Plants in Florarium</h3>
<p>These are neatly planted compositions of succulents, grassroots, decorative ferns. Plants are
selected so that they are in perfect harmony. Order your unique set of plants!</p>
</article>
<article class="plants_show_card">
<img width="300" src="img/Big_Ornamental_Plants.webp" alt="Plants in Florarium">
<h3>Big Ornamental Plants</h3>
<p>Charming pachypodium, yucca, monstera will become a stunning decoration of your room or
office. These plants will make a great impression on your guests.</p>
</article>
</div>
</div>
</div>
<div class="green_flower">
<img width="300" src="img/Green_flower.webp" alt="Green flower">
</div>
<div class="questions">
<p class="ourplants_smallsubheading">―FAQ―</p>
<h2>Have a Question?</h2>
<p class="ourplants_subheading">We are happy to answer any questions! Come to our store or leave your
question in the contact form!</p>
<div class="questions_list">
<div class="question_list__question">
<h3>Do you sell trees?</h3>
<p>Yes, in our store, you can buy decorative trees for the garden.</p>
</div>
<div class="question_list__question">
<h3>Can I buy already grown-up plants?</h3>
<p>Of course, we have a large greenhouse where we grow plants. You can buy an adult plant in a pot.</p>
</div>
<div class="question_list__question">
<h3>Can I buy plants online?</h3>
<p>No, we don't have an online store. To buy a plant, come to our offline store or leave us a message.
</p>
</div>
<button>CONTACT US</button>
</div>
</div>
</main>
<footer>
</footer>
</body>
</html>