Tell us what’s happening:
Describe your issue in detail here.
Please kindly help point out the issue here. These are the instructions:
To enable navigation on the page, add an unordered list with the following three list items:
INFO
HTML
CSS
The list items text should be wrapped in anchor tags.
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="freeCodeCamp Accessibility Quiz practice project" />
<title>Accessibility Quiz</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<img id="logo" src="https://cdn.freecodecamp.org/platform/universal/fcc_primary.svg">
<h1>HTML/CSS Quiz</h1>
<!-- User Editable Region -->
<nav>
<ul>
<a><li>INFO</li></a>
<a><li>HTML</li></a>
<a><li>CSS</li></a>
</ul>
</nav>
<!-- User Editable Region -->
</header>
<main></main>
</body>
</html>