-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccessible Code.html
More file actions
65 lines (32 loc) · 1 KB
/
Copy pathAccessible Code.html
File metadata and controls
65 lines (32 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome Page</title>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
</header>
<main>
<p>Click the button below to learn more.</p>
<button onclick="alert('You clicked the button!')" aria-label="Click this button to learn more">Click Me</button>
<img src="https://storage.googleapis.com/marketing_tta/TTA-circle%20logo-blue%20transparent.png" alt="The TTA circle logo in blue with a transparent background">
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br>
<input type="submit" value="Submit">
</form>
</main>
<nav>
<ul>
<li><a href="#" aria-label="Go to Home page">Home</a></li>
<li><a href="#" aria-label="Learn more About us">About</a></li>
<li><a href="#" aria-label="Contact us">Contact</a></li>
</ul>
</nav>
</body>
</html>