HTML Background Images

Any element can show an image behind its content.

#Jobseeker

Find matching jobs & Auto apply with AI

Hyring
Jobseeker using Hyring to search, apply, and prepare with AI

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>