Menu
×
×
Correct!
Exercise:Use CSS to set the background color of the document (body) to yellow.
<!DOCTYPE html>
<html> <head> <style> @(4) @(1) @(16):yellow; @(1) </style> </head> <body> <h1>My Home Page</h1> </body> </html>
<!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 ❯ |
This will reset the score of ALL 90 exercises.
Are you sure you want to continue?