Q. How to define a background image for a web page?
✅ Correct Answer: (A)
<body background = “test.jpg”>
Explanation: If you want to add a background image instead of a color, one solution is using <body background = “test.jpg”> or with CSS body { background-image: url("test.jpg");}. It specifies a background image for a web page.