Menu
×
×
Correct!
Exercise:Insert the image "smiley.gif" before, and after <p> elements, using the ::before and ::after pseudo-elements. Hint: Use the content property with the ::before and ::after pseudo-elements. |
Edit This Code:
x
<html> <head> <style> </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html> Result:
|
Correct Code:
xxxxxxxxxx Result:
|