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>
<html lang="en">
  <link rel="stylesheet" href="styles.css">
  <head>
   <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <title id="title">tribute-page</title>
    </head>
    <body>
  <main id="main"> 
    <h1> Dr. Norman Borlaug</h1>
             <figcaption id="img-caption">The man who saved a billion lives</figcaption>
       <div id="img-div">
         <img id="image" src="https://cdn.freecodecamp.org/testable-projects-fcc/images/tribute-page-main-image.jpg"></img>
       </div>
       <div id="tribute-link"></div>
       <h4 id="tribute-info">Dr. Norman Borlaug, third from the left, trains biologists in Mexico on how to increase wheat yields - part of his life-long war on hunger.</h4>
  
    <ul id="indent">
      <li>1914 - Born in Cresco, Iowa</li>
      <li>1933 - Leaves his family's farm to attend the University of Minnesota, thanks to a Depression era program known as the "National Youth Administration"</li>
      <li>1935 - Has to stop school and save up more money. Works in the Civilian Conservation Corps, helping starving Americans. "I saw how food changed them", he said. "All of this left scars on me."</li>
      <li>1937 - Finishes university and takes a job in the US Forestry Service</li>
      <li>1938 - Marries wife of 69 years Margret Gibson. Gets laid off due to budget cuts. Inspired by Elvin Charles Stakman, he returns to school study under Stakman, who teaches him about breeding pest-resistent plants.</li>
      <li>1941 - Tries to enroll in the military after the Pearl Harbor attack, but is rejected. Instead, the military asked his lab to work on waterproof glue, DDT to control malaria, disinfectants, and other applied science.
</li>
      <li>1942 - Receives a Ph.D. in Genetics and Plant Pathology</li>
      <li>1944 - Rejects a 100% salary increase from Dupont, leaves behind his pregnant wife, and flies to Mexico to head a new plant pathology program. Over the next 16 years, his team breeds 6,000 different strains of disease resistent wheat - including different varieties for each major climate on Earth.</li>
      <li>1945 - Discovers a way to grown wheat twice each season, doubling wheat yields</li>
      <li>1953 - crosses a short, sturdy dwarf breed of wheat with a high-yeidling American breed, creating a strain that responds well to fertilizer. It goes on to provide 95% of Mexico's wheat.</li>
      <li>1962 - Visits Delhi and brings his high-yielding strains of wheat to the Indian subcontinent in time to help mitigate mass starvation due to a rapidly expanding population</li>
      <li>1970 - receives the Nobel Peace Prize</li>
      <li>1983 - helps seven African countries dramatically increase their maize and sorghum yields
</li>
      <li>1984 - becomes a distinguished professor at Texas A&M University
</li>
      <li>19</li>
      <li>19</li>
      <li>20</li>
      <li>20</li>
    </ul>
      </main>
     </body>
/* file: styles.css */
h1{
  text-align: center;
}

figcaption{
  text-align: center;
}

image{
  max-width: 100%;
  height: auto;
  display: block;
}

ul ,li{
  text-align: center;
{







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/16.2 Safari/605.1.15

Challenge: Tribute Page - Build a Tribute Page

Link to the challenge:

I was wonder if Someone could tell me how to make a space between the li’s?

  • also, you might want to look into “list-style-position” property and its values
  • do you mean like this? the use “margin” in “li” selector
    image

happy learning :slight_smile:

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