-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (112 loc) · 5.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Flower Shop</title>
<link rel="stylesheet" href="styles/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=Open+Sans:wght@300;400;600;700;800&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<section class="header">
<div class="head-section">
<h2 class="header-flowers-title">Let's make beautiful flowers a part of your life.</h2>
<p class="header-flower-description">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="primary-btn"><a href=""></a>Shop Now</button>
</div>
<img class="header-flower" src="images/pngwing 10.png" alt="">
</section>
</header>
<main>
<!-- featured flower section -->
<section class="featured-flower-section">
<h2 class="featured-flower-section-title">Our Featured Flowers</h2>
<p class="featured-flower-section-description">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 class="featured-flower">
<div>
<img id="fea-img-1" src="images/pngwing 6.png" alt="">
<h4 class="featured-flower-title">Pink Flower Tree</h4>
</div>
<div>
<img id="fea-img-2" src="images/pngwing 5.png" alt="">
<h4 class="featured-flower-title">Pink Flower Tree</h4>
</div>
<div>
<img id="fea-img-3" src="images/pngwing 7.png" alt="">
<h4 class="featured-flower-title">Pink Flower Tree</h4>
</div>
</div>
</section>
<section class="banner">
<dib class="banner-item">
<img src="images/Group 57.png" alt="" class="banner-item-image">
<h5 class="banner-item-description">Same Day Delivery. Click & Collect.</h5>
</dib>
<dib class="banner-item">
<img src="images/Group 58.png" alt="" class="banner-item-image">
<h5 class="banner-item-description">Fresh Flowers. Local Growers.</h5>
</dib>
<dib class="banner-item">
<img src="images/Group 59.png" alt="" class="banner-item-image">
<h5 class="banner-item-description">24/7 Free Support.</h5>
</dib>
</section>
<!-- hot deal section -->
<section class="hot-deal">
<div class="hot-deal-info">
<h2 class="hot-deal-title">Hot Deal ! Sale Up To 25% Off</h2>
<p class="hot-deal-description">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>
<button class="primary-btn">Sign Up</button>
</div>
<img class="hot-deal-img" src="images/pngwing 8.png" alt="">
</section>
<!-- instagram section starts from here -->
<section class="instagram">
<h2 class="instagram-title">Instagram</h2>
<p class="instagram-description">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 class="instagram-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>
</section>
<!-- Additional section -->
<section class="online-sale">
<div class="most-sold-flower">
<h2 class="sold-flower-title">Most Sold Flower Online</h2>
<p class="sold-flower-description">Rose is the most sold flower Ever.No other flower is as renowned or famous as the top-selling flowers of rose.</p>
</div>
<img id="img-of-rose" src="images/rose.jpg" alt="">
</section>
<!-- E-mail section starts from here -->
<section class="email-box">
<h2 class="eamil-box-title">Get The Latest Deals</h2>
<p class="email-box-description">$30 coupon for first shopping</p>
<div class="email">
<form>
<input class="form" type="email" name="" id="" placeholder=" Enter your email here....">
</form>
<input class="primary-btn" type="submit" value="Subscribe">
</div>
</section>
</main>
<footer>
<div class="footer">
<h2 class="title">Flower<span id="shop">Shop</span></h2>
<p class="title-description">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="copyright">@2020-2023, FlowerShop.com. All rights reserved.</p>
</div>
</footer>
</body>
</html>