HTML
CSS
Deno
Examples
Do It Yourself
Type in your code below
Run
<html><head><style> body { background-color:blue;// Sets the background color of the webpage body (<body> tag) to black. color:white; // Sets the text color of a webpage body (<body> tag) to white. font-size:21px;// Sets the font size of the webpage body (<body>) to 21 pixels. } </style> </head><body> </body></html>