CSS Syntax
<!DOCTYPE html> <html> <head> <style> p { color: green; text-align: center; } </style> </head> <body> <p>This is a paragraph.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> p { color: green; text-align: center; } </style> </head> <body> <p>This is a paragraph.</p> </body> </html>