-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
62 lines (59 loc) · 2.73 KB
/
Copy pathabout.html
File metadata and controls
62 lines (59 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fragrancia - About Us</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar">
<!-- Navigation content here -->
<div class="container">
<a href="#" class="logo ">Fragrancia.</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="review.html">Review</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</nav>
<!-- About Section -->
<div id="about">
<!-- About content here -->
<div class="container">
<div class="row">
<div class="about-col-1">
<img src="./assets/images.jpeg" alt="About Image">
</div>
<div class="about-col-2">
<h1 class="sub-title">Why Choose Us</h1>
<p>
Fragrancia is your ultimate destination for all things floral. We take pride in offering an exquisite array of fresh and vibrant flowers that are carefully handpicked and expertly arranged by our skilled florists. Whether you're celebrating a special occasion, expressing your love, or simply brightening someone's day, Fragrancia provides an extensive selection of blooms to choose from. Our commitment to quality ensures that your flowers arrive in perfect condition and stay fresh for longer, delivering a delightful sensory experience. With reliable same-day delivery, eco-friendly practices, and a customer-centric approach, Fragrancia is not just a florist but a trusted partner in celebrating life's beautiful moments. Choose Fragrancia for affordable luxury and let the beauty of our flowers speak volumes for you.
</p>
</div>
</div>
</div>
</div>
<!-- Other sections as needed -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="contact-details">
<h3>Contact Us</h3>
<p>Email: fragrancia@gmail.com.com</p>
<p>Phone: 6267249080</p>
<p>Address: 123 Flower Street, City</p>
</div>
<div class="copyright">
<p>© 2023 Fragrancia. All Rights Reserved.</p>
</div>
</div>
</div>
</footer>
</body>
</html>