-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
147 lines (142 loc) · 6.43 KB
/
Copy pathabout.html
File metadata and controls
147 lines (142 loc) · 6.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Essence Luxe</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="logo">ESSENCE LUXE</div>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html" class="nav-cta">Sign In</a></li>
</ul>
</div>
</nav>
<!-- Page Header -->
<section class="page-header">
<div class="container">
<h1>Our Story</h1>
<p>A journey of passion, artistry, and timeless elegance</p>
</div>
</section>
<!-- About Content -->
<section class="about-section">
<div class="container">
<div class="about-grid">
<div class="about-image">
<img src="https://media-cdn.tripadvisor.com/media/attractions-splice-spp-720x480/13/be/e1/dd.jpg" alt="Our Workshop">
</div>
<div class="about-content">
<h2>Crafting Excellence Since 1995</h2>
<p>Essence Luxe was born from a simple belief: that fragrance has the power to transform moments into memories. Founded in the heart of Grasse, France—the perfume capital of the world—we have dedicated over three decades to mastering the art of scent creation.</p>
<p>Our master perfumers blend tradition with innovation, sourcing the rarest ingredients from around the globe. From Bulgarian rose to Indonesian oud, every element is carefully selected to create fragrances that are both timeless and contemporary.</p>
<p>We believe luxury should never come at the expense of our planet. That's why we're committed to sustainable practices, ethical sourcing, and eco-friendly packaging that honors both elegance and responsibility.</p>
</div>
</div>
</div>
</section>
<!-- Values Section -->
<section class="values-section">
<div class="container">
<h2 class="section-title">Our Values</h2>
<div class="values-grid">
<div class="value-card">
<div class="value-icon">
<img src="icon-1.png" alt="Craftsmanship">
</div>
<h3>Artisan Craftsmanship</h3>
<p>Every bottle is a masterpiece, crafted with meticulous attention to detail and unwavering dedication to quality.</p>
</div>
<div class="value-card">
<div class="value-icon">
<img src="icon-2.png" alt="Sustainability">
</div>
<h3>Sustainability</h3>
<p>We source ingredients ethically and package responsibly, ensuring our luxury doesn't compromise the future.</p>
</div>
<div class="value-card">
<div class="value-icon">
<img src="icon-3.png" alt="Innovation">
</div>
<h3>Innovation</h3>
<p>While honoring tradition, we continuously explore new techniques to create fragrances that captivate modern sensibilities.</p>
</div>
</div>
</div>
</section>
<!-- Process Section -->
<section class="process-section">
<div class="container">
<h2 class="section-title">Our Creative Process</h2>
<div class="process-grid">
<div class="process-step">
<div class="step-number">01</div>
<h3>Inspiration</h3>
<p>We draw from art, nature, and emotion to conceptualize each unique fragrance story.</p>
</div>
<div class="process-step">
<div class="step-number">02</div>
<h3>Selection</h3>
<p>Our experts travel the world to source the finest, most authentic ingredients.</p>
</div>
<div class="process-step">
<div class="step-number">03</div>
<h3>Creation</h3>
<p>Master perfumers blend notes with precision, creating harmonious compositions.</p>
</div>
<div class="process-step">
<div class="step-number">04</div>
<h3>Refinement</h3>
<p>Each formula is perfected through months of testing and careful adjustment.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3 class="footer-logo">ESSENCE LUXE</h3>
<p>Crafting luxury fragrances since 1995</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="products.html">Products</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Customer Service</h4>
<ul>
<li><a href="#">Shipping Info</a></li>
<li><a href="#">Returns</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Connect</h4>
<ul>
<li><a href="#">Instagram</a></li>
<li><a href="#">Facebook</a></li>
<li><a href="#">Pinterest</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Essence Luxe. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>