Tell us what’s happening:
I keep getting this message
“Your first anchor element should have the text of About inside your first li element.”
I can not figure out what else to do, I’m following the instructions to the T but no luck I’ve even restarted it incase it was glitching to no avail I know its case sensitive also but. I just need help please
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>About<a href="#about"></a></li>
<li>Posts<a href="#posts"></a></li>
<li>Contact<a href="#contact"></a></li>
</ul>
</nav>
<!-- User Editable Region -->
</header>
</body>
</html>
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15
Challenge Information:
Build a Cat Blog Page - Step 9