-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
100 lines (93 loc) · 4.38 KB
/
Copy pathservices.html
File metadata and controls
100 lines (93 loc) · 4.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services | Accessibility Hub</title>
<link href="https://fonts.googleapis.com/css?family=Nunito:200,300,400,600,700,900" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/animations.css">
</head>
<body>
<div id="particles-js"></div>
<nav class="navbar">
<div class="nav-container">
<a href="index.html" class="nav-logo">Accessibility Hub</a>
<div class="nav-menu">
<a href="index.html" class="nav-link">Home</a>
<a href="about.html" class="nav-link">About</a>
<a href="services.html" class="nav-link active">Services</a>
<a href="contact.html" class="nav-link">Contact</a>
</div>
<div class="nav-hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<div class="container">
<div class="page-header">
<h1 class="page-title">Our Services</h1>
<p class="page-description">Comprehensive accessibility solutions for all needs</p>
</div>
<div class="page-content">
<div class="content-card">
<h2>Accessibility Solutions</h2>
<p>We offer a range of services designed to make technology accessible to everyone:</p>
<div class="feature-list">
<div class="feature-item">
<i class="fas fa-eye feature-icon"></i>
<h3>Eye Gaze Technology</h3>
<p>Advanced eye tracking solutions for hands-free computer interaction</p>
</div>
<div class="feature-item">
<i class="fas fa-microphone feature-icon"></i>
<h3>Voice Control</h3>
<p>Voice command systems for seamless navigation and control</p>
</div>
<div class="feature-item">
<i class="fas fa-hand-paper feature-icon"></i>
<h3>Gesture Recognition</h3>
<p>Intuitive gesture-based interfaces for natural interaction</p>
</div>
</div>
<h2>Custom Solutions</h2>
<p>We also develop custom accessibility solutions tailored to your specific requirements.</p>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-container">
<div class="footer-logo">Accessibility Hub</div>
<div class="footer-social">
<a href="https://www.instagram.com/_ayush.ag" target="_blank" class="social-link">
<i class="fab fa-instagram fa-2x"></i>
</a>
<a href="https://x.com/_7ayush" target="_blank" class="social-link">
<i class="fab fa-twitter fa-2x"></i>
</a>
<a href="https://www.linkedin.com/in/ayush7ag" target="_blank" class="social-link">
<i class="fab fa-linkedin-in fa-2x"></i>
</a>
<a href="https://wa.me/9567942625" target="_blank" class="social-link">
<i class="fab fa-whatsapp fa-2x"></i>
</a>
</div>
<div class="footer-links">
<a href="privacy-policy.html" class="footer-link">Privacy Policy</a>
<a href="terms-of-service.html" class="footer-link">Terms of Service</a>
<a href="contact.html" class="footer-link">Contact Us</a>
</div>
<div class="footer-copyright">
© 2025 Accessibility Hub. All rights reserved.
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="js/gsap-animations.js"></script>
<script src="js/script.js"></script>
</body>
</html>