Tell us what’s happening:
step 9 youranchor element should have text of inside the second
Your code so far
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mr. Whiskers' Blog</title>
<meta charset="UTF-8" />
</head>
<body>
<header>
<h1>Welcome to Mr. Whiskers' Blog Page!</h1>
<figure>
<img
src="https://cdn.freecodecamp.org/curriculum/css-photo-gallery/1.jpg"
alt="a cat peacefully sleeping"
/>
<figcaption>Mr. Whiskers Sleeping</figcaption>
</figure>
<!-- User Editable Region -->
<nav>
<ul>
<li><a href="#about"</a>About</li>
<li><a href="#posts">Posts</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- User Editable Region -->
</header>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Android 10; Mobile; rv:137.0) Gecko/137.0 Firefox/137.0
Challenge Information:
Build a Cat Blog Page - Step 9