Failed:Your #image should have a max-width of 100%.
Failed:Your #image should be centered within its parent.
Describe your issue in detail here.
Your code so far
HTML…
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<head>
<link rel="stylesheet" href="styles.sheet">
</head>
<body>
<main id="main">
<h1 id="title">
Dr. Norman Borlaug
</h1>
<p>The man who saved a billion lives
</p>
<div id="img-div">
<img src="https://cdn.freecodecamp.org/testable-projects-fcc/images/tribute-page-main-image.jpg" alt="Dr. Norman Borlaug seen standing in Mexican wheat field with a group of biologists" id="image">
<figcaption id="img-caption">
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>
</div >
<div id="tribute-info">
<h3>Here's a time line of Dr. Borlaug's life:</h3>
</div>
<h3>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>
</h3>
</main>
</body>
</html>
You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
Maybe I’m missing something – someone with more experience will need to answer this for sure – but will this work? I think it needs to be styles.css and your css page needs to be named that. If the CSS page isn’t properly linked, it’s not going to work.
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main id="main">
<h1 id="title">
Dr. Norman Borlaug
</h1>
<p>The man who saved a billion lives
</p>
<div id="img-div">
<img src="https://cdn.freecodecamp.org/testable-projects-fcc/images/tribute-page-main-image.jpg" alt="Dr. Norman Borlaug seen standing in Mexican wheat field with a group of biologists" id="image">
<figcaption id="img-caption">
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>
</div >
<div id="tribute-info">
<h3>Here's a time line of Dr. Borlaug's life:</h3>
</div>
<h3>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>
</h3>
</main>
</body>
</html>