-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (116 loc) · 5.27 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
<!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="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@100;300;400;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="header-container">
<div class="header-text">
<h6 class="header-title">Let's make beautiful flowers a part of your life.</h6>
<article class="header-details">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.</article>
<button class="btn-primary">Shop Now</button>
</div>
<div class="header-image">
<img class="header-img" src="./Flower_Asset/pngwing10.png" alt="">
</div>
</div>
</header>
<!-- header part end -->
<main>
<section class="flower-container">
<h3 class="flower-container-title">Our Featured Flowers</h3>
<article class="flower-container-description">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.</article>
<div class="flowers">
<div class="pink">
<img class="ful1" src="./Flower_Asset/pngwing6.png" alt="">
<p>Pink Flower Tree</p>
</div>
<div class="pink">
<img class="ful2" src="./Flower_Asset/pngwing5.png" alt="">
<p>Pink Flower Tree</p>
</div>
<div class="pink">
<img class="ful3" src="./Flower_Asset/pngwing7.png" alt="">
<p> Pink Flower Tree </p>
</div>
</div>
</section>
<!-- flower section end -->
<!-- information section start -->
<section class="info">
<div class="icons">
<img class="icon" src="./Flower_Asset/Group57.png" alt="">
<p>Same Day Delivery. Click & Collect.</p>
</div>
<div class="icons">
<img class="icon2" src="./Flower_Asset/Group58.png" alt="">
<P>Fresh Flowers. Local Growers.</P>
</div>
<div class="icons">
<img class="icon3" src="./Flower_Asset/Group59.png" alt="">
<P>24/7 Free Support.</P>
</div>
</section>
<!-- information section end -->
<!-- hot deals start -->
<section class="hot-deals">
<div class="deals-text">
<h3 class="deals-title">Hot Deal ! Sale Up To 25% <span>Off</span></h3>
<p class="deals-detils">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 class="btn-primary sign-up">Sign Up</button>
</div>
<div class="deals-img">
<img src="./Flower_Asset/pngwing8.png" alt="">
</div>
</section>
<!-- instagram section start -->
<section class="instagram">
<div class="insta-text">
<h3 class="deals-title">Instagram</h3>
<article class="insta-details">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.</article>
<div class="gallery">
<img class="pic" src="./Flower_Asset/Flower01.png" alt="">
<img class="pic" src="./Flower_Asset/Rectangle4.png" alt="">
<img class="pic" src="./Flower_Asset/Rectangle5.png" alt="">
<img class="pic" src="./Flower_Asset/Rectangl6.png" alt="">
</div>
</div>
</section>
<section class="newslater">
<div class="elements">
<h3 class="news-title">Get The Latest Deals</h3>
<p class="news-details">$30 coupon for first shopping</p>
<div class="mail">
<form action=""><input placeholder="Enter your email here...." type="email">
<button class="btn-primary">Subscribe</button>
</form>
</div>
</div>
</section>
</main>
<!-- main section end -->
<footer>
<div class="footer-text">
<h1><span>Flower</span><span id="white">Shop</span></h1>
<p class="footer-detils">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>
<article class="copyright">@2020-2023, FlowerShop.com. All rights reserved. </article>
</div>
</footer>
</body>
</html>