-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelenetics.html
110 lines (101 loc) · 4.43 KB
/
telenetics.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Telenetics provides high-performance commercial fiber optic solutions.">
<meta name="author" content="Telenetics">
<title>Telenetics - Commercial Fiber Optics</title>
<link rel="stylesheet" href="styles.css">
<script defer src="scripts.js"></script>
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<h1>Telenetics</h1>
<p>Your Trusted Partner in Commercial Fiber Optic Solutions</p>
<nav>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h2>Transforming Connectivity with Cutting-Edge Fiber Optic Technology</h2>
<p>Experience faster, more reliable internet and communication systems for your business.</p>
<a href="#services" class="cta-button">Explore Our Services</a>
</div>
</section>
<!-- Services Section -->
<section id="services" class="section">
<div class="container">
<h2>Our Services</h2>
<div class="services-grid">
<div class="service-item">
<h3>Commercial Fiber Installations</h3>
<p>We offer end-to-end fiber optic installation for businesses of all sizes, ensuring fast and secure networks.</p>
</div>
<div class="service-item">
<h3>Consulting & Design</h3>
<p>Our experts provide custom design and consultation services to create the ideal fiber optic solutions for your needs.</p>
</div>
<div class="service-item">
<h3>Maintenance & Support</h3>
<p>We provide 24/7 maintenance and troubleshooting for your fiber optic infrastructure, ensuring maximum uptime.</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="section bg-dark">
<div class="container">
<h2>About Us</h2>
<p>Telenetics is a leading provider of fiber optic technology solutions, specializing in high-speed, secure, and scalable networks for businesses across various industries. With years of expertise and a customer-first approach, we are dedicated to delivering cutting-edge solutions tailored to your needs.</p>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section">
<div class="container">
<h2>Contact Us</h2>
<form id="contact-form" action="https://formsubmit.co/[email protected]" method="POST" onsubmit="return showPopup()">
<!-- Hidden input to prevent spamming -->
<input type="hidden" name="_next" value="https://telenetics.net/thank-you.html">
<input type="hidden" name="_subject" value="New message from Telenetics Website">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" required></textarea>
</div>
<button type="submit" class="cta-button">Send Message</button>
</form>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="container">
<p>© 2025 Telenetics. All Rights Reserved.</p>
</div>
</footer>
<!-- Popup Modal -->
<div id="popup" class="popup">
<div class="popup-content">
<h2>Thank You!</h2>
<p>Your message has been sent successfully. We will get back to you soon.</p>
<button onclick="closePopup()">Close</button>
</div>
</div>
</body>
</html>