Input
Output
<!DOCTYPE html> <html> <head> <style> body { font-family: 'Arial', sans-serif; font-size: 16px; font-weight: normal; line-height: 1.5; } h1 { font-size: 36px; font-style: italic; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; } p { font-size: 18px; font-style: normal; line-height: 1.8; word-spacing: 4px; } </style> </head> <body> <h1>Heading Example</h1> <p>This is a paragraph with customized font properties.</p> </body> </html>