HTML Background Images
Any element can show an image behind its content.
Set a background image with the CSS background-image property, and pair it with background-size to control how it scales.
A background image
<!DOCTYPE html>
<html>
<body>
<div style="background-image:url('bg.jpg'); background-size:cover;">
Content over an image
</div>
</body>
</html>