How to change bg color in html5 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to change bg color in html5

12th Oct 2020, 4:48 PM
Aayush
Aayush - avatar
3 Answers
+ 7
go to css select any element type this body { background-color: green; }
12th Oct 2020, 4:58 PM
Galaxy-Coding (inactive)
Galaxy-Coding (inactive) - avatar
+ 1
.class{ background:yellow; } #id{ background:red; } p{ background:skyblue; }
12th Oct 2020, 5:28 PM
Shadoff
Shadoff - avatar
0
With CSS. Inline <tag style="background-color:nameOrHexForColorOrRGB;"> Internal <style> tag or .className or #id { background-color:colorNameOrRGBoOrHex; } </style> Or external, same command tha internal, but remove Style tag, and on html include: <link type"stylesheet" href="pathOfCSSFile">
12th Oct 2020, 5:25 PM
Marcelo Anjos
Marcelo Anjos - avatar