-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
165 lines (158 loc) · 6.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
<!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>
<!-- Web Fonts Links Here -->
<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:wght@400;700&display=swap" rel="stylesheet">
<!-- Faviocn -->
<link rel="shortcut icon" href="image/pngwing5.png" type="image/x-icon">
<!-- CSS Link Here -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<div class="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>
<a href="#" class="primary-btn">Shop Now</a>
</div>
<div class="banner-img">
<img src="image/pngwing10.png" alt="Banner image">
</div>
</div>
</div>
</header>
<main>
<section id="feature">
<div class="container">
<div class="section-title">
<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="feature-flower">
<div class="feature-item ">
<a href="#">
<div class="flower-img one">
<img src="image/pngwing6.png" alt="">
</div>
<p>Pink Flower Tree</p>
</a>
</div>
<div class="feature-item">
<a href="#">
<div class="flower-img two">
<img src="image/pngwing5.png" alt="">
</div>
<p>Pink Flower Tree</p>
</a>
</div>
<div class="feature-item">
<a href="#">
<div class="flower-img three">
<img src="image/pngwing7.png" alt="">
</div>
<p>Pink Flower Tree</p>
</a>
</div>
</div>
</div>
</section>
<section id="service">
<div class="container">
<div class="service-area">
<div class="service-item">
<img src="image/Group57.png" alt="">
<p>Same Day Delivery. Click & Collect.</p>
</div>
<div class="service-item">
<img src="image/Group58.png" alt="">
<p>Fresh Flowers. Local Growers.</p>
</div>
<div class="service-item">
<img src="image/Group59.png" alt="">
<p>24/7 Free Support.</p>
</div>
</div>
</div>
</section>
<section id="deal">
<div class="container">
<div class="deal-content">
<div class="deal-description">
<h2>Hot Deal ! Sale Up To 25% <span>Off</span></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>
<a href="#" class="primary-btn">Sign Up</a>
</div>
<div class="deal-img">
<img src="image/pngwing8.png" alt="">
</div>
</div>
</div>
</section>
<section id="instagram">
<div class="container">
<div class="section-title">
<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="instagram-post">
<div class="instagram-single-post">
<a href="#">
<img src="image/Flower01.png" alt="">
</a>
</div>
<div class="instagram-single-post">
<a href="#">
<img src="image/Rectangle4.png" alt="">
</a>
</div>
<div class="instagram-single-post">
<a href="#">
<img src="image/Rectangle5.png" alt="">
</a>
</div>
<div class="instagram-single-post">
<a href="#">
<img src="image/Rectangle6.png" alt="">
</a>
</div>
</div>
</div>
</section>
<section id="subscribe">
<div class="container">
<div class="subscription-detail">
<h2>Get The Latest Deals
</h2>
<p>$30 coupon for first shopping</p>
<form action="#">
<input type="email" name="" id="" placeholder="Enter your email here....">
<input class="primary-btn" type="button" value="Subscribe">
</form>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<div class="footer-content">
<h2><span>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 class="copy-right">© 2020-2023, FlowerShop.com | All rights reserved. </p>
</div>
</div>
</footer>
</body>
</html>