-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
169 lines (149 loc) · 5.08 KB
/
index.html
File metadata and controls
169 lines (149 loc) · 5.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Flower Store - Home</title>
<link rel="stylesheet" href="style.css">
<!-- Font Awesome (add this inside <head>) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Navbar -->
<header>
<nav class="navbar">
<h1 class="logo"><i class="fa-solid fa-seedling"></i> Flower Store</h1>
<ul class="nav-links">
<li><a href="#home" class="active"><i class="fa-solid fa-house"></i> Home</a></li>
<li><a href="#about"><i class="fa-solid fa-info-circle"></i> About</a></li>
<li><a href="#products"><i class="fa-solid fa-shop"></i> Products</a></li>
<li><a href="#reviews"><i class="fa-solid fa-star"></i> Reviews</a></li>
<li><a href="#contact"><i class="fa-solid fa-envelope"></i> Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="hero-text">
<h2>Fresh Blooms for Every Occasion</h2>
<p>Handpicked, Beautiful, and Delivered with Love 💖</p>
<a href="#products" class="btn">Shop Now</a>
</div>
<!-- Hero 3D Flower -->
<div class="hero-img">
<img src="image1.png" id="flowerImage" alt="Flower" class="clickable">
</div>
<!-- Wave SVG -->
<div class="wave">
<svg viewBox="0 0 500 150" preserveAspectRatio="none">
<path d="M0,49 C150,150 350,0 500,100 L500,0 L0,0 Z"
style="stroke: none; fill: #ffe6f0;"></path>
</svg>
</div>
</section>
<!-- About Us -->
<section class="about" id="about">
<div class="about-container">
<div class="about-img">
<img src="about.jpeg" alt="About Flower">
</div>
<div class="about-text">
<h2>About Us</h2>
<p>
🌸 Our Flower Store began in <b>2010</b> with a simple dream:
to deliver <b>fresh, beautiful, and high-quality flowers</b> to every home.
We are proud to sell flowers that are always fresh, handpicked, and beautifully arranged.
Customers can easily buy flowers online, and we deliver them to <b>any place in the country</b>.
We believe flowers bring happiness, and we are here to spread that joy everywhere.
</p>
</div>
</div>
</section>
<!-- Products Section -->
<section class="featured" id="products">
<h2>🌼 Our Best Sellers</h2>
<div class="card-container">
<div class="card">
<img src="Rose.jpg" alt="Rose">
<h3>Romantic Roses</h3>
<p>Express love with our finest roses.</p>
<button>Buy Now</button>
</div>
<div class="card">
<img src="tulip.jpeg" alt="Tulip">
<h3>Colorful Tulips</h3>
<p>Bright and elegant tulips for joy.</p>
<button>Buy Now</button>
</div>
<div class="card">
<img src="lilies.jpg" alt="Lily">
<h3>Elegant Lilies</h3>
<p>Perfect for special occasions.</p>
<button>Buy Now</button>
</div>
<div class="card">
<img src="card 3.jpeg" alt="Lily">
<h3>Elegant Lilies</h3>
<p>Perfect for special occasions.</p>
<button>Buy Now</button>
</div>
<div class="card">
<img src="card 4.jpg" alt="Lily">
<h3>Rainbow Plumeria</h3>
<p>Perfect for special occasions.</p>
<button>Buy Now</button>
</div>
<div class="card">
<img src="card5.jpg" alt="Lily">
<h3>Lotus</h3>
<p>Perfect for special occasions.</p>
<button>Buy Now</button>
</div>
<div class="card">
<img src="card 6.jpg" alt="Lily">
<h3>White Flower</h3>
<p>Perfect for special occasions.</p>
<button>Buy Now</button>
</div>
<div class="card">
<img src="card 7.jpg" alt="Lily">
<h3>Blue Flower</h3>
<p>Perfect for special occasions.</p>
<button>Buy Now</button>
</div>
</div>
</section>
<!-- Customer Reviews -->
<section class="reviews" id="reviews">
<h2>💬 Customer Reviews</h2>
<div class="review-container">
<div class="review">
<p>"The flowers were so fresh and beautiful! My wife loved them 💖"</p>
<h4>- John D.</h4>
</div>
<div class="review">
<p>"Best flower shop ever! Delivery was quick and the bouquet was stunning 🌸"</p>
<h4>- Sarah K.</h4>
</div>
<div class="review">
<p>"Lovely experience! The tulips were bright and lasted so long 🌷"</p>
<h4>- Anjali R.</h4>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact" id="contact">
<h2>📩 Contact Us</h2>
<form>
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<!-- Footer -->
<footer>
<p>© 2025 Flower Store | All Rights Reserved 🌸</p>
</footer>
<script src="script.js"></script>
</body>
</html>