-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
186 lines (176 loc) · 6.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Flower Shop</title>
</head>
<body>
<!-- Header section Started -->
<!-- Main section Started -->
<main>
<!--Banner Container -->
<div class="banner-container">
<div class="banner-descriptions">
<h1 class="banner-title">
Let's make <br />
beautiful flowers a <br />
part of your life.
</h1>
<p class="banner-text">
It is a long established fact that a reader will be distracted by
the readable
<br> content of a page when looking at its layout. The point
of using Lorem Ipsum is <br> that it has a more-or-less normal
distribution of letters.
</p>
<button type="button" class="btn">Shop Now</button>
</div>
<!-- Banner image -->
<div class="banner-img">
<img
src="flower-shop-assignment-main/Flower Asset/pngwing 10.png"
alt="_flower"
class="image"
/>
</div>
</div>
<!-- Feature Flower -->
<div class="feature_flower">
<div class="feature_description">
<h1>Our Feature Flowers</h1>
<p>
It is a long established fact that a reader will be distracted by
the readable <br />
content of a page when looking at its layout.
</p>
</div>
<div class="feature_box">
<div class="box" id="box1">
<img src="flower-shop-assignment-main/Flower Asset/pngwing 6.png" alt="">
<p>
Pink Flower Tree
</p>
</div>
<div class="box" id="box2">
<img src="flower-shop-assignment-main/Flower Asset/pngwing 5.png" alt="">
<p>
Pink Flower Tree
</p>
</div>
<div class="box" id="box3">
<img src="flower-shop-assignment-main/Flower Asset/pngwing 7.png" alt="">
<p>
Pink Flower Tree
</p>
</div>
</div>
</div>
<!-- discount -->
<div class="discount-container">
<div class="discount-text">
<h1>Hot Deal ! Sale Up To 25% <span class="off">Off</span></h1>
<p>
It is a long established fact that a reader will be distracted by
the readable <br />content of a page when looking at its layout.
</p>
<button type="button" class="btn">Sign UP</button>
</div>
<div class="discount-image">
<img
src="flower-shop-assignment-main/Flower Asset/pngwing 8.png"
alt=""
/>
</div>
</div>
<!-- Instagram -->
<div class="instagram">
<h1>Instagram</h1>
<p>
It is a long established fact that a reader will be distracted by the
readable <br />content of a page when looking at its layout.
</p>
</div>
<!-- instagram gallery -->
<div class="image-gallery">
<div>
<img
src="flower-shop-assignment-main/Flower Asset/Flower 01.png"
alt=""
/>
</div>
<div>
<img
src="flower-shop-assignment-main/Flower Asset/Rectangle 4.png"
alt=""
/>
</div>
<div>
<img
src="flower-shop-assignment-main/Flower Asset/Rectangle 5.png"
alt=""
/>
</div>
<div>
<img
src="flower-shop-assignment-main/Flower Asset/Rectangle 6.png"
alt=""
/>
</div>
</div>
<!-- Email form -->
<div class="subscribe">
<div>
<h1>Get The Latest Deals</h1>
<p>$30 coupon for first shopping</p>
</div>
<div>
<form action="">
<input
type="text"
name=""
id="input"
placeholder="Enter you email"
/>
<button class="btn">Subscribe</button>
</form>
</div>
<div></div>
</div>
<!-- article container -->
<div class="article-container">
<div class="left-blog">
<h1>
Flower Flourish
</h1>
<div>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Magni id tenetur, quo quos provident
<br> ratione ab, quam repellendus, dolore voluptatem perspiciatis soluta accusamus at saepe quod numquam.
<br> Voluptatibus autem harum, laborum totam nulla a labore eum ab impedit rerum inventore maiores quod adipisci molestiae ea, voluptate tenetur! Id, totam repudiandae.
</p>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Magni id tenetur, <br> quo quos provident ratione ab, quam repellendus, dolore voluptatem perspiciatis soluta accusamus at saepe quod numquam. Voluptatibus autem harum, laborum totam nulla a labore eum ab impedit rerum inventore maiores quod adipisci molestiae ea, voluptate tenetur! Id, totam repudiandae.
</p>
</div>
</div>
<div class="blog-img">
<img src="flower-shop-assignment-main/Flower Asset/pngwing 6.png" alt="">
</div>
</div>
</main>
<!-- Footer section Started -->
<footer>
<h1><span class="off">Flower</span>Shop</h1>
<p>
It is a long established fact that a reader will be distracted by the
readable <br />
content of a page when looking at its layout.
</p>
<p class="copy-right">
© 2020-2023, FlowerShop.com. All rights reserved.
</p>
</footer>
</body>
</html>