Set 77 Practical Question

⭐ Q27 – Create a Webpage with Background Image Only

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head><title>Background Image</title></head>
<body background="bg.jpg">
<h1 style="color:white">Welcome</h1>
<p style="color:white">This is a background image page</p>
</body>
</html>

Write Your HTML / JavaScript Code