Good afternoon,
I’m having an issue with my Product Landing Page certification project. It’s this step that I’m stuck on:
Each .nav-link
element should link to a corresponding element on the landing page (has an href
with a value of another element’s id. e.g. #footer
).
Here is a copy of my code:
<!DOCTYPE html>
<html lang="en">
<html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<link rel="stylesheet" href="styles.css">
<title>Product Landing Page</title>
</head>
<body>
<header id="header">
<img id="header-img" src="https://i.imgur.com/RbVRdDe.jpg"/>
<nav id="nav-bar">
<link class="nav-link" href=""/>
<link class="nav-link" href=""/>
<link class="nav-link" href=""/>
</nav>
<video id="video" src="https://i.imgur.com/RbVRdDe.jpg"></video>
<form id="form" action="https://www.freecodecamp.com/email-submit">
<input id="email" placeholder="email address" type="email" name="email"></input>
<input id="submit" type="submit"></input>
</form>
</header>
</body>
</html>
Any help would be greatly appreciated. Thank you.