Input
Output
<!DOCTYPE html> <html> <head> <style> /* This CSS block styles the main heading and paragraph */ h1 { color: navy; text-align: center; } p { font-size: 18px; color: gray; } </style> </head> <body> <h1>Internal CSS Example</h1> <p>This paragraph is styled using internal CSS.</p> </body> </html>