Aria Label for Footer Nav
HTML
Medium
3 views
Problem Description
Create a footer nav with aria-label 'meetcode footer'.
Output Format
Print the HTML code.
Constraints
Nav must have aria-label.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>\
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode</title>
</head>
<body>
<footer>
<nav aria-label='meetcode footer'>
<a href='#'>Help</a>
<a href='#'>Contact</a>
</nav>
</footer>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!