-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
60 lines (49 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="about_style.css">
</head>
<body>
<div id="aboutMain">
<div id="backToHome">
<div id="iconBackToHome">
<button id="backToHomeButton" onclick="window.location.href='index.html'">
<img src="./arrow-left-line.svg" alt="Go To Home">
</button>
</div>
<div id="backToHomeText">
<h2>BACK TO HOME</h2>
</div>
</div>
<section class="about">
<div class="about-container">
<h1>About GlamGrid</h1>
<p class="tagline">Where Fashion Meets Elegance</p>
<p>At <strong>GlamGrid</strong>, fashion is more than just clothing – it's a statement, an expression of who you are. We're passionate about curating stylish and high-quality apparel that empowers you to embrace your unique style and shine effortlessly.</p>
<h2>Our Mission</h2>
<p>To bring you the latest fashion trends that combine style, comfort, and affordability. Whether you're looking for casual chic, office glam, or event-ready outfits, we’ve got you covered.</p>
<h2>Why GlamGrid?</h2>
<ul>
<li><strong>Trendy Designs:</strong> Always fresh, always modern.</li>
<li><strong>Quality First:</strong> Every piece is crafted with attention to detail.</li>
<li><strong>Affordable Luxury:</strong> High-end looks, pocket-friendly prices.</li>
<li><strong>Customer Love:</strong> You’re at the heart of everything we do.</li>
</ul>
<h2>Our Promise</h2>
<p>GlamGrid celebrates individuality and confidence. Every collection is designed to make you feel effortlessly glamorous, every day.</p>
<p>Join the <strong>GlamGrid</strong> experience – elevate your wardrobe and express your style with grace!</p>
</div>
</section>
<div id="leftImage">
<img src="https://img.freepik.com/free-photo/ecstatic-girl-long-skirt-touching-her-white-sunglasses-while-posing-with-best-friend-indoor-portrait-compelling-female-models-dancing_197531-10917.jpg?ga=GA1.1.1622007321.1728679762&semt=ais_hybrid" alt="">
</div>
<div id="rightImage">
<img src="https://img.freepik.com/free-photo/portrait-young-happy-woman-studio_1303-13801.jpg?t=st=1729308926~exp=1729312526~hmac=1c15b72bc0d908e0453bc472692485bc3c6a500f75f8481a811ad534401b41c0&w=740" alt="">
</div>
</div>
</body>
<script src="./script_about.js"></script>
</html>