Input
Output
<!DOCTYPE html> <html> <head> <style> p { font-size: 18px; line-height: 1.8; } h1 { font-size: 36px; line-height: 1.2; } </style> </head> <body> <h1>Welcome to My Blog</h1> <p>This is a paragraph where line-height is set to 1.8 times the font size, making the text more readable and spacious.</p> </body> </html>