-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
173 lines (137 loc) · 5.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flower Shop</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&display=swap"
rel="stylesheet">
</head>
<body>
<header class="header">
<div class="container banner">
<div class="banner-text">
<h1>Let's make beautiful flowers a part of your life.</h1>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when
looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal
distribution of letters.</p>
<button class="btn">Shop Now</button>
</div>
<div class="banner-img">
<img src="images/pngwing 10.png" alt="">
</div>
</div>
</header>
<main>
<section id="Featured">
<div class="container">
<div class="heading">
<h2>Our Featured Flowers</h2>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
</div>
<div class="img">
<div class="img-1" style="padding-top: 50px;">
<img src="images/pngwing 6.png" alt="">
</div>
<div class="img-2" style="padding-top: 100px">
<img src="images/pngwing 5.png" alt="">
</div>
<div class="img-3">
<img src="images/pngwing 7.png" alt="">
</div>
</div>
<div class="img-text">
<div class="text-1">
<p> Pink Flower Tree</p>
</div>
<div class="text-2" >
<p> Pink Flower Tree</p>
</div>
<div class="text-3">
<p> Pink Flower Tree</p>
</div>
</div>
</div>
</section>
<section class="help-container">
<div class="help-img">
<div class="help-img-1">
<img src="images/Group 57.png" alt="">
<p>Same Day Delivery. Click & Collect.</p>
</div>
<div class="help-img-1">
<img src="images/Group 58.png" alt="">
<p>Fresh Flowers. Local Growers.</p>
</div>
<div class="help-img-1">
<img src="images/Group 59.png" alt="">
<p>24/7 Free Support.</p>
</div>
</div>
</section>
<section id="deal-full">
<div class="deal">
<div class="deal-banner">
<div class="deal-text">
<h1>Hot Deal ! Sale Up To 25% <span style="color: rgb(229, 84, 115);"> Off </span></h1>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
<div>
<button>Sign Up</button>
</div>
</div>
<div class="deal-img">
<img src="images/pngwing 8.png" alt="">
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="heading">
<h2>Instagram</h2>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
</div>
<div class="footer">
<div class="insta-image">
<div>
<img src="images/Flower 01.png" alt="">
</div>
<div>
<img src="images/Rectangle 4.png" alt="">
</div>
<div>
<img src="images/Rectangle 5.png" alt="">
</div>
<div>
<img src="images/Rectangle 6.png" alt="">
</div>
</div>
</div>
<div class="newsletter">
<div class="newsletter-main">
<div class="newsletter-heading">
<h2>Get The Latest Deals</h2>
<p>$30 coupon for first shopping</p>
</div>
<form class="input">
<input type="email" name="" id="" placeholder="Enter your email">
<div class="btn-2">
<p>Subscribe</p>
</div>
</form>
</div>
</div>
<section>
<div class="footer-last">
<h2> <span style="color: rgb(229, 84, 115) ;">Flower </span> Shop</h2>
<p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p>
<p style="font-size: x-small; color: rgba(255, 255, 255, 0.4);">@2020-2023, FlowerShop.com. All rights reserved. </p>
</div>
</section>
</footer>
</body>
</html>