Product Landing Page - Build a Product Landing Page

Tell us what’s happening:

i have problem in including videos in my code , i need help

Your code so far

<!-- file: index.html -->
<!DOCTYPE hmtl>
<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">
    <title>Shoes website</title>
  </head>
  <body>
    <header id="header">
      <h1>Top OG shoes</h1>
     <div id="logo-container"> 
      <img id="header-img" src="https://images.unsplash.com/photo-1491553895911-0055eca6402d?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTR8fHNob2VzfGVufDB8fDB8fHww" >
    </div>
  <nav id="nav-bar">
    <a class="nav-link" href="#home">Home</a>
    <a class="nav-link" href="#Men">Men</a>
    <a class="nav-link" href="#Women">Women</a>
    <a class="nav-link" href="#Kids">Kids</a>
    <a class="nav-link" href="#Customise">Customise</a>
  </nav>
    <main>
 <section >
  <div>
  <h3 >Superior quality</h3>
  <p>Built to last, designed for you</p>
  </div>
  <h3 >Free and Fast shipping.</h3>
  <p>Your satisfaction, our guarantee.</p>
  </div>
  <h3 >Stylish Design:</h3>
  <p>Elevate your style effortlessly</p>
  </div>
</section>
    </main>
  </body>
</html>
/* file: styles.css */


#logo-container {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:green;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
#logo-container #header-img{
   width: 100%;
  height: auto;
}

Your browser information:

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

Challenge Information:

Product Landing Page - Build a Product Landing Page

Hi there,

To embed a Youtube video in your code, you visit that video, click on “Share” button, then click on “Embed”, then copy the generated iframe code and paste it in your code.

thank you so much, it worked

1 Like