Input
Output
<!DOCTYPE html> <html> <head> <style> body { background-color: lightblue; } h1 { background-color: yellow; } p { background-color: #90ee90; } </style> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>