Product Landing Page - Build a Product Landing Page

I know this is an ugly hack rat nest, but I have been playing around with the image (Trombone in header) for an hour, I cannot get it to move. could someone just point me in a direction? i changed it to #img from .logo just to see if i could get it to move at all.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<meta name="viewport" content="width=device-width,initial-scale=1.0"

link rel="stylesheet" href="styles.css"
 
 <div id="page-wrapper">
    <header id="header">
      <div class="logo">
 <img id="header-img" src="https://cdn.freecodecamp.org/testable-projects-fcc/images/product-landing-page-logo.png" alt="original trombones logo"></d iv>
      <nav id="nav-bar">
        <ul>
          <li><a class="nav-link" href="#features">Features</a>
          <li><a class="nav-link" href="#features">How it Works</a>
          <li><a class="nav-link" href="#features">Pricing</a>
        </ul></nav></header>
    <div class="container"</div>
    <section id="hero">
      <h1>hand-crafted home made masterpieces</h1>
      <form id="form" action="https://www.freecodecamp.com/email-submit">
          <input name="email" id="email" type="email" placeholder="Enter your email address" required="">
          <input id="submit" type="submit" value="Get Started" class="btn"></form>
</section>
    <div class="container">
      <section id="features">
        <div class="grid">
          <div class="icon">
            <i class="fa fa-3x fa-                  fire"> </i></div>
          <div class="desc">
               <h1> best materials</h1>
        <p> we use only the best material; it sounds good to say</p></div>
    </div>
      </section>
      <section id="how-it-works"></section>
      <section id="pricing"></section>
    </div>
    <section ="how-it-works">
      <iframe id="video" height="315" src="https://www.youtube-nocookie.com/embed/y8Yv4pnO7qc?rel=0&amp;controls=0&amp;showinfo=0" frameborder="0" allowfullscreen=""></iframe></section>
    <section id="pricing"> 
      <div ="product" id="tenor">
        <div class="level">tenor trombone</div><h2>$600</h2>
        <ol>
              <li>Lorem ipsum.</li>
              <li>Lorem ipsum.</li>
        <li>Lorem ipsum dolor.</li>
        </ol>
        <button class="btn">select</button>
      </div>
      <div class="product" id="bass">
            <div class="level">Bass Trombone</div>
            <h2>$900</h2>
            <ol>
              <li>Lorem ipsum.</li>
              <li>Lorem ipsum.</li>
              <li>Lorem ipsum dolor.</li>
              <li>Lorem ipsum.</li>
            </ol>
            <button class="btn">Select</button>
          </div>
      <div class="produict" id="valve"></div></section>
    <footer><span>copyright whenever go ahead and try me</span></footer>
  </div>
  </div>
</body>
</html>
      
      
/* file: styles.css */
*{
box-sizing: border-box;
margin: 0;
border: solid black 1px;
}

#header {
  display: flex;
  flex-direction: row;
  position: fixed;
  top: 0;
  align-items: center;
  justify-content: space-around;
  min-height: 75px;
  z-index: 10;
  width: 100%;
  background-color: transparent;
  
  
}
body {
  display: block;
  background-color: grey;
 font-family: tahoma;
  
}
a{
  text-decoration: none;
  color: #000;
}
#img { box-sizing: border-box;
  width: 50vw;
  background-color: #eee;
}


#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
  height: 200px;
}
.container {
  max-width: 1000px;
  width: 100%;
}
nav {
  display: block;
  font-weight: 400;
}
nav > ul {
    width: 35vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
#features .desc{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

Your browser information:

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

Challenge Information:

Product Landing Page - Build a Product Landing Page

Hi @bmc

Try placing angled brackets around these elements.

Happy coding

lmao . well, I thought that was it but its still not doing anything.

Hi @bmc
I noticed the closing div tag has a space.

Where do you want to place the trombone?

im simply trying to place it in the top left at scale like the example. I am able to size it within the HTML but thats not how your supposed to do it. something is wrong the CSS isnt responding even after I put in the angle brackets like you pointed out. im gonna scrap it and start again.

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