HTML CSS examples for CSS:Quiz
Add a new shadow to the <h1> element with: no horizontal or vertical shadow, 10px blur, and a red color.
<!DOCTYPE html> <html> <head> <style> h1 {<!--from w ww. j a v a2 s . c o m--> text-shadow: 2px 2px 5px green, 0 0 10px red; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>