A basic example of HTML code:
<!doctype html>
<html>
<body>
<p>Some text content</p>
<p>Some more content</p>
<p> ... </p>
<img src="image.jpg">
</body>
</html>
The image is meant to be placed using CSS at the bottom of the page, behind the paragraphs.
Check out a working example here.