Tell us what’s happening:
No passing the last 3 checks, the nav bar must be fixed on the top of the page, at least one media query and to use a flexbox, Thanks for any tip.
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="styless.css">
</head>
<body>
<header id="header">
<img src="logo.png" alt="Logo de la compañia" id="header-img"
width="15%"
height="auto">
<nav id="nav-bar">
<ul>
<li><a href="#introduction" class="nav-link">Introduction</a></li>
<li><a href="#products" class="nav-link">Products</a></li>
<li><a href="#footer" class="nav-link">Contact</a></li>
</ul>
</nav>
</header>
<form action="https://www.freecodecamp.org/email-submit" id="form" target="_blank">
<input type="email" name="email" id="email" placeholder="Enter your email address">
<input type="submit" id="submit" >
</form>
<iframe src="https://www.youtube-nocookie.com/embed/EZyLWaDrtbs"
frameborder="0"
title="Video musica para trabajar"
id="video">
</iframe>
<main id="main">
<section id="introduction">Introduction</section>
<section id="products">Products</section>
</main>
<footer id="footer">
<address>
Me<br>
Example street <br>
Ciudad,Pais <br>
<a href="tel:+34555555555">+34 555555555</a><br>
</address>
</footer>
</body>
</html>
/* file: styles.css */
header {
position: fixed;
background-color: black;
height: 15vh;
width: 100vw;
left: 0;
top: 0;
}
#nav-bar {
position:fixed;
top: 0px;
display:flex;
}
#nav-bar ul {
display: flex;
list-style: none;
}
li {
margin: 40px 15px;
}
a {
text-decoration: none;
color: white;
}
#header-img {
width: 15%;
height: 100%;
body {
padding-top: 15vh;
}
main {
display: flex;
justify-content: center;
}
section {
display: block;
}
#form {
display: flex;
top: 25px;
justify-content: center;
}
iframe {
display: flex;
position: absolute;
width: 50%;
height: auto;
top: 25%;
left: 30%;
}
@media (max-width:768px) {
body {
background: gray;
}
#main-doc {
color: black;
}
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:138.0) Gecko/20100101 Firefox/138.0
Challenge Information:
Build a Product Landing Page - Build a Product Landing Page