HTML CSS examples for CSS:Quiz
Set a "2px" horizontal, and "2px" vertical, text shadow for the <h1> element.
<!DOCTYPE html> <html> <head> <style> h1 {<!--from ww w . j a v a2 s .c o m--> text-shadow: 2px 2px; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>