Tribute Page - Build a Tribute Page

Tell us what’s happening:

Describe your issue in detail here.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<head>
   <link rel="stylesheet" href="style.css">
   </head>

<body>
  <main id="main">
    <h1 id="title">Tribute Page Header</h1>
    <div id="img-div">
      <img id="image" src="https://cdn.freecodecamp.org/testable-projects-fcc/images/tribute-page-main-image.jpg">
      <div id="img-caption">Image caption</div>
      </img>
    </div>

    <div id="tribute-info">Tribute info
      <a id="tribute-link" href="https://google.co.us" target="_blank"></a>

    </div>
  </main>
</body>
</html>


   


/* file: styles.css */
#image{
  max-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/119.0.0.0 Safari/537.36 Edg/119.0.0.0

Challenge Information:

Tribute Page - Build a Tribute Page

Hi there and welcome to our community!

Did you have a question for us about this project?

Hello and welcome to the community :smiley:!
Learning to describe the issue is a very important part in learning how to code.
I see you’ve got a typo in the adress here:

Should be styles.css
Hope this helps!

1 Like

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