Menu
×
×
Correct!
Exercise:Add the correct class to make the H1 element red.
<!DOCTYPE html>
<html> <head> <style> .mystyle {color:red;} </style> </head> <body> <h1 @(15)>My Home Page</h1> </body> </html>
<!DOCTYPE html>
<html> <head> <style> .mystyle {color:red;} </style> </head> <body> <h1 class="mystyle">My Home Page</h1> </body> </html>
<!DOCTYPE html>
<html> <head> <style> .mystyle {color:red;} </style> </head> <body> <h1 class='mystyle'>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?