TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <head> <style> body { font-family: Arial, sans-serif; margin: 20px; } h1 { color: #007BFF; text-align: center; } p { font-size: 16px; line-height: 1.5; } </style> </head> <body> <h1>Welcome to My Page</h1> <p>This is an example of using the <style> tag to add internal CSS to an HTML document.</p> </body> </html>