-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathAbout.html
76 lines (67 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About us</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4; /* Example background color */
}
header {
background-color: #2c3e50; /* Example header color */
color: white;
padding: 20px;
text-align: center;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #673ce7; /* Example heading color */
}
p {
line-height: 1.6;
}
@media (max-width: 600px) {
h1 {
font-size: 1.5em;
}
p {
font-size: 1em;
}
}
</style>
</head>
<body>
<header>
<h1>About Us</h1>
</header>
<div class="container">
<h2>Lets know about us:</h2>
<p>Welcome to [your website name] , your go-to destination for [product category]. We are committed to offering a curated selection of high-quality products at affordable prices, ensuring an exceptional shopping experience for our customers.</p>
<h2>Our Mission</h2>
<p>Our mission is to make online shopping easier, more convenient, and enjoyable. We strive to connect our customers with products that meet their needs and enhance their lives.</p>
<h2>Our Story</h2>
<p>Founded in [Year] by [Founder's Name], [Your E-commerce Website Name] began with a simple idea: to provide an easy and enjoyable shopping experience. Over the years, we have expanded our product range and built a community of satisfied customers.</p>
<h2>Why Shop With Us?</h2>
<p>At [Your E-commerce Website Name], you can expect:</p>
<ul>
<li>A wide variety of products to choose from</li>
<li>Outstanding customer service</li>
<li>Secure payment options</li>
<li>Fast and reliable shipping</li>
</ul>
<h2>Get in Touch</h2>
<p>If you have any questions or need assistance, please feel free to reach out to us at [contact email]. We’re here to help and ensure your experience is nothing short of excellent!</p>
</div>
</body>
</html>