-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (111 loc) · 4.7 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
<!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@400;700;900&family=Open+Sans:wght@400;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="Styles/styles.css">
</head>
<body>
<header class="header-ti">
<div>
<h1 class="text-banner">Let's make<br>beautiful flowers a<br>part of your life.</h1>
<p class="p-banner">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 class="btn-banner">Shop Now</button>
</div>
<div>
<img class="img-banner" src="images/pngwing 10.png" alt="">
</div>
</header>
<main>
<section>
<div class="featured-fw">
<h1>Our Featured 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>
<figure class="fig-1">
<div class="bg-1">
<img class="img-1" src="images/pngwing 6.png" alt="">
<figcaption id="img-cap">Pink Flower Tree</figcaption>
</div>
<div class="bg-2">
<img class="img-2" src="images/pngwing 5.png" alt="">
<figcaption id="img-cap">Pink Flower Tree</figcaption>
</div>
<div class="bg-3">
<img class="img-3" src="images/pngwing 7.png" alt="">
<figcaption id="img-cap">Pink Flower Tree</figcaption>
</div>
</figure>
</section>
<section class="rectangle-1">
<figure class="rec-1-service">
<div>
<img src="images/Group 57.png" alt="">
<figcaption>Same Day Delivery.Click & Collect</figcaption>
</div>
<div>
<img src="images/Group 58.png" alt="">
<figcaption>Fresh Flowers. Local Growers.</figcaption>
</div>
<div>
<img src="images/Group 59.png" alt="">
<figcaption>24/7 Free Support.</figcaption>
</div>
</figure>
</section>
<section class="deals">
<div class="align-btn">
<h1 class="hot-25">Hot Deal ! Sale Up To 25%<span class="pink">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 class="btn-signup">Sign Up</button>
</div>
<figure>
<img class="deals-img" src="images/pngwing 8.png" alt="">
</figure>
</section>
<section class="insta-bg">
<div class="insta-text">
<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>
<figure class="insta-img">
<img src="images/Flower 01.png" alt="">
<img src="images/Rectangle 4.png" alt="">
<img src="images/Rectangle 5.png" alt="">
<img src="images/Rectangle 6.png" alt="">
</figure>
</section>
<section class="latest-deal">
<div class="deal-30">
<h1>Get The Latest Deals</h1>
<p>$30 coupon for first shopping</p>
</div>
<div>
<input class="email-input" type="email" placeholder="Enter your e-mail here">
<button class="subscribe">Subscribe</button>
</div>
</section>
</main>
<footer class="footer">
<h1><span class="pink">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>
<br>
<br>
<small class="small">@2020-2023, FlowerShop.com. All rights reserved.</small>
</footer>
</body>
</html>