-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
97 lines (87 loc) · 4.87 KB
/
services.html
File metadata and controls
97 lines (87 loc) · 4.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - 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>Our Services</h1>
<p>Explore the range of technology services we offer to help your business thrive.</p>
</section>
<section class="services-list">
<div class="service-item">
<h3>Web Development</h3>
<p>We offer a full spectrum of web development services to establish and enhance your online presence. This includes:</p>
<ul>
<li>Website Design: User-friendly and visually appealing designs tailored to your brand.</li>
<li>Front-End Development: Building interactive and responsive user interfaces using HTML, CSS, and JavaScript.</li>
<li>Back-End Development: Creating robust server-side logic and databases to power your website.</li>
<li>E-commerce Solutions: Developing secure and scalable online stores to sell your products or services.</li>
<li>Website Maintenance: Ongoing support and updates to ensure your website remains secure and performs optimally.</li>
</ul>
</div>
<div class="service-item">
<h3>IT Support</h3>
<p>Our comprehensive IT support services are designed to keep your technology infrastructure running smoothly. We provide:</p>
<ul>
<li>Troubleshooting: быстрое решение технических проблем для минимизации простоев.</li>
<li>Network Management: Setting up and maintaining reliable and secure network systems.</li>
<li>System Maintenance: Regular checks and updates to prevent issues and ensure optimal performance.</li>
<li>Technical Assistance: Expert help and guidance for all your IT-related queries and challenges.</li>
</ul>
</div>
<div class="service-item">
<h3>Digital Technology Solutions</h3>
<p>We leverage cutting-edge digital technologies to provide solutions that drive efficiency and innovation, including:</p>
<ul>
<li>Cloud Services: Migrating and managing your data and applications on secure cloud platforms.</li>
<li>Data Analytics: Helping you understand your data to make informed business decisions.</li>
<li>Software Integration: Seamlessly connecting different software systems to streamline your workflows.</li>
</ul>
</div>
<div class="service-item">
<h3>IT Components for Home, Offices and Churches</h3>
<p>We supply a wide range of high-quality IT components tailored to different environments:</p>
<ul>
<li>For Home: Computers, laptops, printers, smart home devices, and accessories.</li>
<li>For Offices: Desktops, servers, networking equipment, monitors, and peripherals.</li>
<li>For Churches: Projectors, sound systems, presentation equipment, and specialized IT solutions.</li>
</ul>
</div>
</section>
<section class="call-to-action">
<h2>Ready to Get Started?</h2>
<p>Contact us today to discuss your technology needs and how Pem Tech Solution can help.</p>
<a href="contact.html" class="button">Contact Us</a>
</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>