Input
Output
<!DOCTYPE html> <html> <head> <style> h1 { text-transform: uppercase; } p { text-transform: capitalize; } a { text-transform: lowercase; color: red; } </style> </head> <body> <h1>This Heading is Uppercase</h1> <p>This is a paragraph with each word's first letter capitalized.</p> <a href="#">This link text is lowercase.</a> </body> </html>