Struggle with the ‘Each .nav-link
element should have an href
attribute.’
I was able to pass every other rule on the project, but I can’t seem to get past this one. I’ve been looking over through everything and I just don’t know what the problem is!
If anyone could help me, y’all would be life savers
Thank you!
<!-- file: index.html -->
<!DOCtype html>
<html lan='en'>
<head>
<meta charset='utf-8'/>
<link rel='stylesheet' href='./styles.css'
</head>
<body>
<title>Come on Barbie let's go Party!</title>
<header id="header">
<img id="header-img" src="https://www.freepnglogos.com/uploads/barbie-png-logo/barbie-media-png-logo-18.png"/>
<nav id="nav-bar">
<button class="nav-link" href="#Welcome"><a href="#Welcome">Welcome!</a></button>
<button class="nav-link" href="#Mission"><a href="#Mission">Mission Statement!</a></button>
<button class="nav-link" href="#More"><a href="#More">More Barbie Fun!</a></button>
</nav>
</header>