Input
Output
<!DOCTYPE html> <html> <head> <style> body { background-color: #f0f0f0; /* Light background */ color: #333; /* Dark text */ } h1 { color: #ff6347; /* Tomato color */ } p { color: rgb(34, 139, 34); /* Forest green */ } a { color: #1e90ff; /* Dodger blue */ text-decoration: none; } a:hover { color: #ff4500; /* OrangeRed on hover */ } </style> </head> <body> <h1>Welcome to My Website</h1> <p>This is a sample paragraph with text color set to forest green.</p> <a href="#">Click here</a> </body> </html>