I'm a beginner in the world of HTML/CSS and this is my practice page. I have a section with an image of a person, and I'd like to add a quote next to the image. However, I'm struggling to make the image fill the entire width and height of the div. Can anyone offer some guidance? P.S. I haven't delved into scripts yet, so I'm wondering if it's possible to achieve this using only CSS or if I should hold off for now?
<div id="napoleon">
<img src="images/napoleon.jpg" />
</div>
<div>
<q>If you can see it and you can believe it, you can do it.</q>
<p>Napoleon Hill</p>
</div>