Complete the code to set the background color of the page to light blue.
body { background-color: [1]; }The background-color property sets the background color of an element. Here, lightblue is a valid color value.
Complete the code to make all paragraph text bold.
p { font-weight: [1]; }The font-weight property controls how thick or bold the text appears. Using bold makes the text bold.
Fix the error in the CSS code to correctly change the text color to red.
h1 { color: [1]; }The color property changes the text color. The value red is a valid color name.
Fill both blanks to center the text and change its color to blue.
div { text-align: [1]; color: [2]; }text-align: center; centers the text horizontally. color: blue; changes the text color to blue.
Fill all three blanks to create a CSS rule that makes list items have a font size of 1.5rem, a green color, and italic style.
li { font-size: [1]; color: [2]; font-style: [3]; }font-size: 1.5rem; sets the size of the text relative to root font size. color: green; changes text color to green. font-style: italic; makes text slanted.