Menu
×
×
Correct!
Exercise:Use CSS to set the font of the document to "courier".
<!DOCTYPE html>
<html> <head> <style> body {@(11):courier;} </style> </head> <body> <h1>My Home Page</h1> </body> </html>
<!DOCTYPE html>
<html> <head> <style> body {font-family:courier;} </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?