0
How to change the color of code playground of HTML?
I want to know the answer for my assignment.
7 Answers
0
If you are asking about changing the theme of the sololearn app, then follow the below steps.
1. Click the three horizontal line icon on top left corner to open drawer.
2. Click Settings.
3. Click Theme and select the desired color from the available colors.
Else, if you are asking about changing the color of html document then use the css background-color or background property.
0
Thank you Art1mis .. but how can I use the css background-color background property for the HTML document?
0
You can use the following inline-css in body tag
<body style="background-color:#1c87c9;">
Replace the color code with the desired one
0
Click <body style="backgrond-color:#1c87c9;">
0
Thank you Art1mis and Paleti Tejaswi đđ I'm glad that you help me to finish my assignment đ
0
.example{
background-color:#242526;
}