Online CSS Compiler <!DOCTYPE html> <html> <head> <title>Simple CSS Example</title> <style> body { background-color: lightblue; } h1 { color: white; text-align: center; } p { font-family: verdana; font-size: 20px; } </style> </head> <body> <h1>Hello, W3office!</h1> <p>This is a simple CSS demo without JavaScript.</p> </body> </html>