-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
166 lines (145 loc) · 5.34 KB
/
about.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="styles.css">
<title>About Us</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
p {
font-family: Brandon-thin;
font-size: 22px;
line-height: 1.5;
margin-bottom: 20px;
}
.signature {
font-size: 24px;
font-weight: bold;
text-align: center;
margin-top: 40px;
}
/***/
.profile-card {
display: flex;
align-items: center;
background-color: rgba(100, 95, 47, 0.09);
padding: 20px;
}
.profile-picture {
flex: 1;
text-align: center;
}
.profile-picture img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
}
.profile-info {
flex: 2;
margin-left: 20px;
}
.profile-info h2 {
color: #817952;
font-size: 24px;
margin-bottom: 10px;
}
.profile-info h3 {
font-family: Brandon-medium;
color: #504823;
margin-bottom: 5px;
}
.profile-info p {
font-size: 18px;
line-height: 1.5;
margin-bottom: 20px;
}
@media only screen and (min-width : 746px) {
.profile-card {
padding: 20px 20%;
}
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="assets/logo-main.png">
</div>
<div class="navbar" style="display: flex; justify-content: space-between;">
<a href="index.html">Home</a>
<a href="brands.html">Brands</a>
<a href="products.html">Products</a>
<a href="about.html">About Us</a>
</div>
</header>
<main>
<div class="container">
<h1>Welcome to LUXLIFE</h1>
<p>At LUXLIFE, we are passionate about bringing you the latest and greatest in fashion from around the
world.</p>
<p>Our team of expert buyers and stylists are constantly scouring the globe to curate a collection of
clothing, accessories, and shoes that are both on-trend and timeless.</p>
<p>We believe that fashion is a form of self-expression and a way to showcase your unique personality.
That's why we offer a wide range of styles and brands to choose from, ensuring that there is something
for everyone at LUXLIFE.</p>
<p>Our commitment to quality and customer satisfaction is unparalleled. We carefully select each and every
item in our collection to ensure that they meet our high standards for design, construction, and
materials.</p>
<p>We also offer free shipping and returns on all orders, so you can shop with confidence knowing that you
can easily exchange or return any item that doesn't meet your expectations.</p>
<p>Thank you for choosing LUXLIFE as your fashion destination. We are dedicated to providing you with the
best possible shopping experience and helping you look and feel your absolute best.</p>
<p class="signature">Sincerely,<br>The LUXLIFE Team</p>
</div>
<div class="profile-card">
<div class="profile-picture">
<img src="assets/pfp1.png" alt="Profile Picture">
</div>
<div class="profile-info">
<h2>Hannali Olayvar</h2>
<h3>CEO, LUXLIFE</h3>
<p>Hannali Olayvar is the CEO of LUXLIFE, a leading fashion retailer. With over 20 years of experience
in the fashion industry, John has a keen eye for style and a passion for bringing the latest trends
to LUXLIFE customers. In his free time, John enjoys traveling and trying new foods.</p>
</div>
</div>
<!-- code footerher -->
<footer>
<div class="logo">
<img src="assets/logo-main.png">
<p><b>
Fashion Collections</b>
</p>
</div>
<div>
<p> © 2024 LuxLife Fashion Collections | All rights reserved</p>
<p> Created by Hannali Olayvar</p>
<div class="social-icons">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
</div>
<hr>
</div>
</footer>
<!-- end of footer-->
</main>
</body>
</html>