Menu
×
×
Correct!
Exercise:Create a class selector named "special". Add a color property with the value "blue" inside the "special" class.
<!DOCTYPE html>
<html> <head> <style> .special { color:blue; } </style> </head> <body> <p class="special">My paragraph</p> </body> </html> Not CorrectClick here to try again. Correct!Next ❯
<!DOCTYPE html>
<html> <head> <style> ; </style> </head> <body> <p class="special">My paragraph</p> </body> </html> |