-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.html
More file actions
98 lines (88 loc) · 4.65 KB
/
products.html
File metadata and controls
98 lines (88 loc) · 4.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products - 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 Products</h1>
<p>Explore our range of high-tech gadgets and IT components for your home, office, and church needs.</p>
</section>
<section class="products-list">
<div class="product-item">
<h3>High-Tech Gadgets</h3>
<p>Explore our curated selection of the latest high-tech gadgets designed to enhance your digital experience. Our range includes:</p>
<ul>
<li>Smartphones and Tablets: The newest models with advanced features.</li>
<li>Wearable Technology: Smartwatches, fitness trackers, and more.</li>
<li>Smart Home Devices: Automation solutions for lighting, security, and entertainment.</li>
<li>Innovative Electronics: Unique and cutting-edge gadgets for various needs.</li>
</ul>
</div>
<div class="product-item">
<h3>IT Components for Home</h3>
<p>Build a connected and efficient home environment with our range of IT components, including:</p>
<ul>
<li>Routers and Networking: Reliable internet connectivity for all your devices.</li>
<li>Storage Devices: Hard drives, SSDs, and NAS solutions for data storage and backup.</li>
<li>Printers and Scanners: For your document management needs.</li>
<li>Accessories: Cables, adapters, and other essential peripherals.</li>
</ul>
</div>
<div class="product-item">
<h3>IT Components for Offices</h3>
<p>Equip your office for maximum productivity and collaboration with our professional-grade IT components:</p>
<ul>
<li>Desktop Computers and Laptops: Powerful and reliable machines for business tasks.</li>
<li>Monitors and Displays: High-resolution screens for comfortable work.</li>
<li>Networking Solutions: Robust routers, switches, and access points for seamless connectivity.</li>
<li>Peripherals: Keyboards, mice, and other essential accessories.</li>
</ul>
</div>
<div class="product-item">
<h3>IT Components for Churches</h3>
<p>Support your ministry's technological needs with our specialized IT components:</p>
<ul>
<li>Audio-Visual Equipment: Projectors, screens, speakers, and microphones for presentations and services.</li>
<li>Presentation Systems: Software and hardware for engaging congregations.</li>
<li>Networking Tools: Reliable connectivity for various church activities.</li>
<li>Specialized Software: Solutions tailored for church management and operations.</li>
</ul>
</div>
</section>
<section class="call-to-action">
<h2>Looking for Specific IT Products?</h2>
<p>Contact our sales team to inquire about specific gadgets and IT components.</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>