-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
70 lines (62 loc) · 2.66 KB
/
Copy pathabout.html
File metadata and controls
70 lines (62 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Sazees</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">
<img src="logo.jpeg" alt="Product 1" width="50" height="50">
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="product.html">Products</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero about-hero">
<h1>About Us</h1>
<p>Discover our story, mission, and values.</p>
</section>
<section class="about-content">
<div class="about-section">
<img src="logo.jpeg" alt="Our Team" class="about-img">
<div class="about-text">
<h2>Our Story</h2>
<p>Sazees was founded with a simple vision: to provide customers with high-quality products at
unbeatable prices. From humble beginnings as a small family business, we've grown into a trusted
name in online shopping, serving thousands of satisfied customers across the globe.</p>
</div>
</div>
<div class="about-section reverse">
<img src="logo.jpeg" alt="Our Mission" class="about-img">
<div class="about-text">
<h2>Our Mission</h2>
<p>Our mission is to make shopping convenient, affordable, and enjoyable for everyone. We strive to
deliver exceptional service and products that exceed expectations, ensuring our customers return
time and time again.</p>
</div>
</div>
<div class="about-section">
<img src="logo.jpeg" alt="Our Values" class="about-img">
<div class="about-text">
<h2>Our Values</h2>
<p>At Sazees, we believe in transparency, quality, and innovation. Our team works tirelessly to stay
ahead of trends, source the best products, and provide a seamless shopping experience. We value
our customers and their trust in us.</p>
</div>
</div>
</section>
</main>
<footer>
<p>© 2025 Sazees. All rights reserved.</p>
</footer>
</body>
</html>