|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="UTF-8"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + <title>Tribute Page - Dr. Norman Borlaug</title> |
| 8 | + <link rel="stylesheet" href="styles.css"> |
| 9 | +</head> |
| 10 | + |
| 11 | +<body> |
| 12 | + |
| 13 | + <div class="container"> |
| 14 | + <div class="content"> |
| 15 | + |
| 16 | + <h1 class="title">Dr. Norman Borlaug</h1> |
| 17 | + |
| 18 | + <p class="subtitle">The man who saved a billion lives</p> |
| 19 | + |
| 20 | + <figure> |
| 21 | + <img src="https://cdn.freecodecamp.org/testable-projects-fcc/images/tribute.jpg" alt="Dr. Norman Borlaug" class="img"> |
| 22 | + <figcaption>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.</figcaption> |
| 23 | + </figure> |
| 24 | + |
| 25 | + <p class="quote">Here's a timeline of Dr. Borlaug's life:</p> |
| 26 | + |
| 27 | + <ul> |
| 28 | + <li><strong>1914</strong> - Born in Cresco, Iowa</li> |
| 29 | + <li><strong>1933</strong> - Leaves his family's farm to attend the University of Minnesota, thanks to a Depression era program known as the "National Youth Administration"</li> |
| 30 | + <li><strong>1939</strong> - Receives a Ph.D. in Genetics from the University of Colorado</li> |
| 31 | + <li><strong>1940</strong> - Writes a book with his colleagues at the University of Minnesota and marries his wife of 69 years, Margret Gibson. They have three children</li> |
| 32 | + <li><strong>1941</strong> - Divorces his wife's homemaker and marries his second wife</li> |
| 33 | + <li><strong>1942</strong> - Realizes that he must have electoral votes and becomes a professor at Texas A&M University</li> |
| 34 | + <li><strong>1943</strong> - Leaves his family to become his true love's second marriage</li> |
| 35 | + <li><strong>1944</strong> - Realizes that he must have electoral votes and becomes a professor at the University of Texas at Austin</li> |
| 36 | + <li><strong>1945</strong> - Receives his Ph.D. in Medicine and dies at the age of 95</li> |
| 37 | + </ul> |
| 38 | + |
| 39 | + <blockquote> |
| 40 | + "It is during our darkest moments that we must focus to see the light." |
| 41 | + </blockquote> |
| 42 | + |
| 43 | + </div> |
| 44 | + </div> |
| 45 | + |
| 46 | + <footer> |
| 47 | + If you have time, you should read more about this incredible human being on his <a id="tribute-link" href="https://en.wikipedia.org/wiki/Norman_Borlaug" target="_blank">Wikipedia entry</a>. |
| 48 | + </footer> |
| 49 | +</body> |
| 50 | + |
| 51 | +</html> |
0 commit comments