-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
45 lines (45 loc) · 1.14 KB
/
Index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assistive Tech Solutions Inc.</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">ATS Logo</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>Welcome to Assistive Tech Solutions Inc.</h1>
<p>Innovating assistive technology for a more inclusive world.</p>
<button>Learn More</button>
</section>
<section class="features">
<h1>Our Features</h1>
<ul>
<li>AI-powered assistive technology</li>
<li>Enhanced independence for visually impaired individuals</li>
<li>Collaboration with organizations to drive positive change</li>
</ul>
</section>
</main>
<footer>
<p>© 2023 Assistive Tech Solutions Inc.</p>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Social Media</a></li>
</ul>
</footer>
<script src="script.js"></script>
</body>
</html>