Your portfolio should have an a element with an id of profile-link, please which element will i create? have created a section for it still doesn't work

Tell us what’s happening:
Describe your issue in detail here.

   **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta http-equiv="X-UA-Compatible" content="IE=edge">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>personal portfolio</title>
</head>
<body>
<nav id="navbar">
<ul>
<li><a href="#welcome-section">About</a></li>
<li><a href="#projects">Work</a></li>
<li><a href="#profile-link">Contact</a></li>
</ul>
</nav>   

<section id="welcome-section">
   <h1>Hey I am Abdulkabir</h1>
  <h2>a web developer</h2>
</section>

<section id="projects">
<p class="project-tile"><em>These are some of my projects</em></p>
   <a href="#"></a>
<tribute page/>
<p id="profile-link">Let's work together...</p>
   <a href="#_blank">FreeCodeCamp</a>
</section>

<section >
   
</section>
</body>
</html>
/* file: styles.css */

   **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:101.0) Gecko/20100101 Firefox/101.0

Challenge: Build a Personal Portfolio Webpage

Link to the challenge:

Hi @ Justkb, and welcome to the forum!

The profile-link id needs to be on the link itself (the a element).

And the link is supposed to point to your profile on either freeCodeCamp or GitHub.
So I’d expect to see a url in there somewhere.

I don’t know what this is
<tribute page/>
but it doesn’t look like valid html.
You might want to delete that.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.