To change the background color in HTML, you can use the CSS property "background-color." Simply define it within a style tag in your HTML document or in an external stylesheet. For example: <style> body { background-color: blue; } </style> Adjust the color by using color names, HEX codes, or RGB values.