-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
83 lines (74 loc) · 4.7 KB
/
about.html
File metadata and controls
83 lines (74 loc) · 4.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Pem Tech Solution</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Pem Tech Solution</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="page-header">
<h1>About Pem Tech Solution</h1>
</section>
<section class="company-overview">
<h2>Our Story: Innovation Rooted in Expertise</h2>
<p>Pem Tech Solution emerged from a shared passion for leveraging technology to solve real-world challenges. Founded in [Year of Founding] by a team of experienced IT professionals in Lagos, Nigeria, our initial vision was to bridge the gap between cutting-edge technological advancements and the practical needs of homes, businesses, and even community organizations like churches. Recognizing the increasing reliance on digital infrastructure, we set out to provide reliable, efficient, and tailored tech solutions.</p>
<p>Our journey began with a focus on providing essential IT components and support. Over time, we expanded our service offerings to include comprehensive web development and bespoke digital technology solutions, always staying ahead of the curve to offer our clients the most effective tools and strategies.</p>
</section>
<section class="our-mission">
<h2>Our Mission: Empowering Through Technology</h2>
<p>Our mission at Pem Tech Solution is to empower individuals and organizations by providing innovative and reliable technology solutions. We are committed to understanding our clients' unique needs and delivering services and products that enable them to thrive in an increasingly digital world. We strive to be more than just a provider; we aim to be a trusted technology partner.</p>
</section>
<section class="our-values">
<h2>Our Core Values: Guiding Our Every Action</h2>
<p>These core values are the foundation of how we operate and interact with our clients and the wider community:</p>
<ul>
<li><strong>Expertise:</strong> We are committed to continuous learning and maintaining a high level of technical proficiency to provide the best solutions.</li>
<li><strong>Integrity:</strong> We believe in honest and transparent communication, building trust through ethical practices.</li>
<li><strong>Reliability:</strong> Our clients depend on us, and we are dedicated to providing dependable services and high-quality products.</li>
<li><strong>Customer Focus:</strong> We prioritize understanding and meeting the specific needs of each client, ensuring their satisfaction is paramount.</li>
<li><strong>Innovation:</strong> We embrace new technologies and creative approaches to deliver forward-thinking solutions.</li>
</ul>
</section>
<section class="our-team">
<h2>Our Team (Optional): The Driving Force</h2>
<p>Our strength lies in our dedicated team of skilled professionals. We bring together a diverse range of expertise in web development, IT support, digital solutions, and hardware provision.</p>
<div class="team-grid">
<div class="team-member">
<h3>[Team Member Name 1]</h3>
<p>Lead Web Developer</p>
</div>
<div class="team-member">
<h3>[Team Member Name 2]</h3>
<p>Senior IT Support Engineer</p>
</div>
</div>
</section>
</main>
<footer>
<p>© 2025 Pem Tech Solution. All rights reserved.</p>
</footer>
<script src="script.js"></script>
<button id="back-to-top-btn" title="Go to top">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
<path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"/>
<path d="M0 0h24v24H0z" fill="none"/>
</svg>
</button>
</body>
</html>