CSS Introduction
<!DOCTYPE html> <html> <head> <style> body { background-color: #f7f7f7; font-family: Arial, sans-serif; } h1 { color: #00643c; text-align: center; } </style> </head> <body> <h1>My Page</h1> <p>Welcome to my website.</p> </body> </html>