Input
Output
<!DOCTYPE html> <html> <head> <style> h1 { color: blue; 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>