Tribute Page - Build a Tribute Page

Tell us what’s happening:
Describe your issue in detail here.

Your code so far
please how do i create or get my link
can someone help me please.

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Tribute Page</title>
    <meta charset="UTF-8">
    <meta  name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="tribute-page" content="project">
    <link rel="stylesheet" href="style.css">
  </head>
  <h1>Dr.Norman Borlaug</h1>
  <p>Tribute page of   Dr.Norman Borlaug</p> 
  <body>
    <main id="main">
    <title id="title">Tribute Page</title>
    <figure id="img-div">
      <img id="image" >
      <div id="img-caption">Text</div>
      <div id="tribute-info">Info</div>
      <a href="https//:freeCodeCamp.org" id="tribute-link" target="_blank">Link</a>
</main>
  </body>
</html>
/* file: styles.css */
#img{
  display:block;
  text-align:center;
  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/116.0.0.0 Safari/537.36

Challenge: Tribute Page - Build a Tribute Page

Link to the challenge:

This should be styles.css (notice the s at the end of styles).

Also, the id for the image you want to style is #image, not #img.

1 Like

okay thanks i really appreciate sorry for the late response.

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