Code Editor Panel
Home
HTML Tutorial
HTML Colors
Run
HTML
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <p style="background-color:green;">The background color is GREEN.</p>
<p style="background-color:orange; color:white;">The BACKGROUND color is ORANGE and the TEXT color is WHITE.</p> <p style="border:5px solid blue;">The BORDER color is BLUE.</p> </body> </html>
Output