
Biganani Kagiso
1,617 PointsWhat
Where am I going wrong?
<!DOCTYPE html>
<html>
<head>
<title>Portfolio Page</title>
</head>
<body>
<img src= "../img/logo.png" alt="Site logo">
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="#Portfolio">Portfolio</a></li>
</ul>
<h1 id="Portfolio">My Portfolio</h1>
</body>
</html>
1 Answer

KRIS NIKOLAISEN
Pro Student 51,733 PointsYou changed the id of portfolio to have an uppercase p. Change it back to lowercase. Then your link should be:
<li><a href="#portfolio">Portfolio</a></li>
Biganani Kagiso
1,617 PointsBiganani Kagiso
1,617 PointsThank you so much!