Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Tell us what’s happening:
Describe your issue in detail here.
I couldn’t get pass this “Your portfolio should use at least one media query.” please help.
Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <body></body>
  <head>
  <meta charset="UTF-8"></meta>
 <meta name="viewport" content="device= device-width, scale=1.0"></meta>
 <link href="styles.css" rel="stylesheet"></link> </head>
<section id="welcome-section">
  <h1>Portfolio Webpage</h1>
</section>
<section id="projects">
  <title class="project-tile">
  </title>
  <a></a>
  <link href="styles.css" rel="stylesheet"></link>
  <navbar id="navbar">
    <a href="#web"></a>
    <link href="styles.css" rel="stylesheet"></link>
  </navbar>
  <a id="profile-link" target="_blank"></a>
</html>
</section>
/* file: styles.css */
navbar{
  position: fixed;
  width: 100%;
  text-align: right;
  font-size: 24pt;
  top: 0%;
  right: 5px;
  background-color: #000000;
  color: #ffffff;
}
@media (min-width: 500px){
  navbar{
    background: yellow;
  }
}

Your browser information:

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

Challenge: Personal Portfolio Webpage - Build a Personal Portfolio Webpage

Link to the challenge:

I’d run your HTML through a validator and fix all the issues.

1 Like

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