Hi all!
So I’m stuck on one of the last steps of this project. I have completed every list requirement. But for some reason it is not accepting my code. I have looked at other peoples posts to see if I did something incorectly but I am not seeing anything different in my code.
The requirements I still need to meet are:
-
Failed: Your portfolio should have an
a
element with anid
ofprofile-link
. -
Failed: Your
#profile-link
element should have atarget
attribute of_blank
.
Thank you all in advance for your help!!
this is my code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport">
<link href="styles.css" rel="stylesheet">
<title>Harrison Berger Portfolio Page</title>
</head>
<body>
<header>
<nav id="navbar">
<ul>
<li><a class="nav-link" href="#welcome-section">Welcome</a></li>
<li><a class="nav-link" href="#projects">Projects</a></li>
<li><a class="nav-link" href="#Pricing">Pricing</a></li>
</ul>
</nav>
</header>
<section id="welcome-section">
<h1 class="header">Harrison Berger</h1>
<p class="sub-header">Writer | Director | Artist</p>
</section>
<section id="projects">
<div>
<h2 class="project-tile">Leo Whisky Product Page</h2>
<img href="#">
<a href="#">LeoWhiskey.com</a>
</div>
</section>
<section id="profile-link">
<div id="profile-link">
<a id="profile-link" href="https://github.com/harrisoncberger" target="_blank"> GitHub</a>
</div>
</section>
</body>
<footer>
</footer>
</html>