Menu
×
×
Correct!
Exercise:Use the correct attribute to make sure that the last paragraph gets the styling as described
in the
<!DOCTYPE html>
<html> <head> <style> p.intro { font-size:20px; color:gray; background-color:lightblue; } </style> </head> <body> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p @(13)>This is a paragraph.</p> </body> </html>
<!DOCTYPE html>
<html> <head> <style> p.intro { font-size:20px; color:gray; background-color:lightblue; } </style> </head> <body> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p class="intro">This is a paragraph.</p> </body> </html>
<!DOCTYPE html>
<html> <head> <style> p.intro { font-size:20px; color:gray; background-color:lightblue; } </style> </head> <body> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p class='intro'>This is a paragraph.</p> </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?