This repository was archived by the owner on Jan 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutUs.html
More file actions
147 lines (136 loc) · 4.6 KB
/
aboutUs.html
File metadata and controls
147 lines (136 loc) · 4.6 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>
<head>
<title>About Us - Randitha Tech Track</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<style>
/* Add your custom styles here */
body {
font-family: sans-serif;
}
.jumbotron {
background-color: #f0f0f0;
}
.container {
max-width: 960px;
}
.div2 {
padding: 3em;
}
.row {
padding: 0.5em;
}
h2 {
padding-top: 1.5em;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#importedFooter").load("./assets/commons/footer.txt");
$("#importedNavbar").load("./assets/commons/nav.txt");
});
</script>
</head>
<body>
<div id="importedNavbar" ></div>
<div class="jumbotron jumbotron-fluid div2">
<div class="container text-center div2">
<h1 class="display-4">About Us</h1>
<p class="lead">
Welcome to Randitha Tech Track, your one-stop destination for
high-quality computer equipment and accessories.
</p>
</div>
</div>
<div class="container div2">
<h2 class="text-center">Our Story</h2>
<p>
At Randitha Tech Track, we're passionate about technology and its
potential to transform lives. Founded in 2024, we set out on a mission
to provide reliable and cutting-edge computer equipment to enthusiasts,
professionals, and businesses alike.
</p>
<h2 class="text-center">Our Mission</h2>
<p>
Our mission is simple: to empower our customers with the latest
technology solutions that enhance productivity, creativity, and
innovation. We strive to offer a curated selection of products, backed
by exceptional customer service and technical expertise.
</p>
<h2 class="text-center">Why Choose Us?</h2>
<div class="row div2">
<div class="col-md-4 div2">
<h3>Quality Assurance</h3>
<p>
We handpick each product to ensure exceptional quality and
performance.
</p>
</div>
<div class="col-md-4 div2">
<h3>Expert Guidance</h3>
<p>
Our team of experts is here to provide personalized recommendations
and technical support.
</p>
</div>
<div class="col-md-4 div2">
<h3>Wide Selection</h3>
<p>
Explore a diverse range of computer equipment, from laptops and
desktops to peripherals and components.
</p>
</div>
</div>
<div class="row div2">
<div class="col-md-6 div2">
<h3>Fast Shipping</h3>
<p>
Enjoy fast and reliable shipping options to get your products
delivered straight to your doorstep.
</p>
</div>
<div class="col-md-6 div2">
<h3>Customer Satisfaction</h3>
<p>
Your satisfaction is our priority. We're committed to providing a
seamless shopping experience from start to finish.
</p>
</div>
</div>
<h2 class="text-center">Our Values</h2>
<ul class="list-group">
<li class="list-group-item">
Integrity: We believe in honesty, transparency, and fairness in all
our dealings.
</li>
<li class="list-group-item">
Innovation: We embrace innovation and continuously strive to stay
ahead of the curve in technology trends.
</li>
<li class="list-group-item">
Customer-Centricity: Your needs and preferences drive everything we
do. We're dedicated to exceeding your expectations.
</li>
<li class="list-group-item">
Community Engagement: We're proud to be part of the tech community and
actively support initiatives that promote digital literacy and
inclusion.
</li>
</ul>
<h2 class="text-center">Contact Us</h2>
<p>
Have questions or need assistance? Don't hesitate to reach out to our
friendly team. You can contact us via email at
<a href="mailto:customersupport@yourcompany.com">customersupport@yourcompany.com</a> or by
phone at +1 (234) 567-890. We're here to help!
</p>
</div>
<div id="importedFooter"></div>
</body>
</html>