Tribute Page - Build a Tribute Page

I am getting all kinds of error codes saying that its missing information that is actually there does anyone see some kind of problem I’m missing?

Your code so far

<!-- file: index.html -->
<link rel="stylesheet" href="styles.css">
  <main id='main'>
   <title id='title'>Tribute Page<title>
    <figure id='img-div'>
    <img id='image'/>
    <div id='img-caption'>Text</div>
    </figure>
<div id='tribute-info'>Free Code Camp Tribute</div>
<a id='tribute-link' href='https://www.freecodecamp.org' target='_blank'>Link</a>
</main>
/* file: styles.css */
#image{max-width:100%;
height: auto;
display: block;
margin: 0,auto
}

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2.1 Safari/605.1.15

Challenge Information:

Tribute Page - Build a Tribute Page

1 Like

here is an html boiler plate

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <link rel="stylesheet" href="./styles.css" />
    <title>your page title</title>
  </head>
  <body>
    <h1>header</h1> //for example - you can put your code here
  </body>
</html>
1 Like

mod edit: removed solution

thanks guys got it worked out!

Hi @Robeloper ! Welcome to the forum.

I’m another user, not a moderator or admin, but for future reference, the practice here is not to directly provide working code to people with questions. This is especially important for certification projects. We are allowed to answer questions and give hints and examples.

@Robeloper

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

Ooops, Got it! No problem. From now on, I’ll keep my responses focused on providing helpful hints and guidance, rather than giving away full solutions. Thanks for your message :slight_smile:

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