CSS Syntax

Example 1

p { color: red; text-align: center; }

Try it Yourself

<!DOCTYPE html> <html> <head> <style> p { color: red; text-align: center; } </style> </head> <body> <p>Hello World!</p> <p>These paragraphs are styled with CSS.</p> </body> </html>

Document

menu

Document in project

You can download PDF file.

Refference