I am stuck on the seventh task of the project and I don’t know how to solve it. It looks correct to me. Also, the duration for it to check the codes is also quite long. Please help me ;-;
OK, first try to add a media query
Example (media query)
@media (max-height: 700px){
h2 {
font-size: 18px;
}
}
Second, you must add a section in your main
Example (sections)
<main>
<section class="first-section">
</section>
</main>
Third, you must style (using the CSS CodePen block) your section
so 2. The height of the welcome section should be equal to the height of the viewport
Example (section view)
.first-section {
height: 100vh;
}
And at the final, you must create a navbar
that should contain at least one link that I can click on to navigate to different sections of the page
Example (navbar)
<nav id="navbar">
<a href= "#welcome-section">About</a>
<a href= "#projects">Work</a>
<a href= "https://www.freecodecamp.org/stefan-perdeica" id= "profile-link" target="_blank">My freeCodeCamp informations</a>
</nav>
1 Like
Sorry for the late response. Thank you for assisting me!!
No problem, everyone must take a pause
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.