The correct answer is:Option b(<body bgcolor = “green”>)
Small code snippet:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Background Color Example</title>
</head>
<body bgcolor="green">
<h1>Hello, World!</h1>
<p>This is an example of a webpage with a green color.</p>
</body>
</html>