Input
Output
<!DOCTYPE html> <html> <head> <style> p { font-size: 16px; letter-spacing: 1px; } h1 { font-size: 36px; letter-spacing: 3px; } </style> </head> <body> <h1>Stylish Heading with Extra Space</h1> <p>Here, we have a paragraph with letter-spacing set to 1px to make it more readable and aesthetically pleasing.</p> </body> </html>