-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStep_437_Accessible.html
More file actions
34 lines (34 loc) · 1.19 KB
/
Copy pathStep_437_Accessible.html
File metadata and controls
34 lines (34 loc) · 1.19 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
<!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>