Personal Portfolio Webpage - Build a Personal Portfolio Webpage

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

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <header>
    <meta charset="uft-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="styles.css">
    </header>
      <nav id="navbar">
        <ul class="nav-list">
          <li>
            <a href="#welcome-section">About</a>
            </li>
            <li>
              <a href="projects">Work</a>
              </li>
              <li>
                <a href="contact">Contact</a>
              </li>
          </ul>
  </nav>
  <body>
      <section id="welcome-section">
        <h1>Hey I am Mimic</h1>
        <p>a web developer</p>
        <p>I am excited about some of the projects I've been able to complete.</p>
        </section>
  <section id="projects">
          <div class="project-tile">Let's work together...
          </div>
  <a id="profile-link" href="https://codepen.io/FreeCodeCamp/" target="_blank">FreeCodeCamp.org
    </a>
  <a href="https://codepen.io/freeCodeCamp/full/zNqgVx" target="_blank"> 
            
  <a href="https://codepen.io/FreeCodeCamp/" target="_blank">   
          
     </body>
      
          </section>

  </html>
/* file: styles.css */
@media (max-width: 100px) {
 h1 {
    font-size: 4rem;
  }
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36

Challenge: Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Link to the challenge:

Please tell us what the problem is in your own words. Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

Your #navbar element should always be at the top of the viewport.

Use position with either fixed or sticky

1 Like

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