Tribute Page - Build a Tribute Page

I don’t know how to put text in the title, image caption, or tribute info. I also don’t know why the link isn’t showing up.

Your code so far

<!-- file: index.html -->
<!HTML>
<main id="main">
<head>
 <input id="title">Dr. Norman Borlaug</title>
 <div id="img-div"><img id="image"><input id="img-caption"></div>
 <input id="tribute-info"><a href="https://www.google.com/" target="_blank" id="tribute-link"></a>
  </head>
  <body>
    </body>
    </main>
/* file: styles.css */

Your browser information:

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

Challenge: Tribute Page - Build a Tribute Page

Link to the challenge:

I didnt look at all of it, but look at your first input and look at how you close that input. You’re not closing that input correctly

Look at what you are doing for tribute info. All you are doing is making an input with the id of tribute info. You are not adding any text like the directions tell you to. Also why are you making everything an input? I think you need to go back and see what inputs are, and what they are used for

Your image has issues as well. You are not setting a source for your image, so nothing is going to show up. For some reason you seem to be obsessed with using inputs there as well. I think it would be a good idea to back and look at the earlier lessons and then try this again.

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