Tell us what’s happening:
hello!
I am a new in learning to code on “Free code camp”
I tried to google the answers, opened all sites available but still can’t find my mistakes. Please help me. Below 2 steps I can not pass…
- Each
.nav-link
element should link to a corresponding element on the landing page (has anhref
with a value of another element’s id. e.g.#footer
). - Your Product Landing Page should use CSS Flexbox at least once.
Will be pleasure for your help!!!
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" />
<link rel="stylesheet" href="styles.css">
<header id="header">
<div id="image">
<div id="title">
<img id="header-img" alt="product logo thing"
<img
src="https://cdn.freecodecamp.org/testable-projects-fcc/images/product-landing-page-logo.png"/>
<nav id="nav-bar">
<li>
<a class="nav-link" href="#premium materials">Premium Materials</a></li>
<li>
<a class="nav-link" href="#fast shipping">Fast Shipping</a> </li>
<li>
<a class="nav-link" href="#quality assurance">Quality Assurance</a></li>
</nav>
</header>
<div id="video-wrapper">
<div>
<p>Product Video Overview</p>
</div>
<iframe id="video" width="560" height="315" src="https://youtu.be/y8Yv4pnO7qc" frameborder="0" allowfullscreen></iframe>
</div>
<form id="form" action="https://www.freecodecamp.com/email-submit" method="get">
<label for="email" id="email-label"><input id="email" name="email" type="email" placeholder="Enter your email"></input></label>
<input type="submit" id="submit" value="Get Started!"></input>
<div class="social-icons">
<a
href="https://www.facebook.com/freecodecamp/">
<i class="fab fa-facebook-f"></i>
</a>
<footer class="text-center">
<hr>
href="https://www.instagram.com/alexsjch0/" target="_blank"><i class="fa fa-instagram"></i></a></p>
</footer>
</div>
</header>
/* file: styles.css */
@media (prefers-reduced-motion: no-preference) { *{
scroll-behavior: smooth;}}
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36
Challenge Information:
Product Landing Page - Build a Product Landing Page