This CSS tutorial contains hundreds of CSS examples.
<html> <head> <style> body { background-color: lightblue; } h1 { color: white; text-align: center; } p { font-family: verdana; font-size: 20px; } </style> </head> <body> <h1>My First CSS Example</h1> <p>ACADEMY OF INFORMATION TECHNOLOGY</p> </body> </html>
My First CSS Example
ACADEMY OF INFORMATION TECHNOLOGY