Menu
×
×
Correct!
Exercise:Use CSS to set the background color of the document (body) to yellow.
<!DOCTYPE html>
<html> <head> <style> body { background-color:yellow; } </style> </head> <body> <h1>My Home Page</h1> </body> </html> Not CorrectClick here to try again. Correct!Next ❯
<!DOCTYPE html>
<html> <head> <style> :yellow; </style> </head> <body> <h1>My Home Page</h1> </body> </html> |