How i Can Set Background color | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How i Can Set Background color

17th Sep 2017, 1:09 PM
PugBlaster
PugBlaster - avatar
4 Answers
+ 13
For adding styles inside your document: <!DOCTYPE html> <html> <head> <title>Page Title</title> <style> body { background-color: blue; } </style> </head> <body> </body> </html>
17th Sep 2017, 1:12 PM
LynTon
LynTon - avatar
+ 3
/*css*/ background:#000;
17th Sep 2017, 1:12 PM
Ekansh
+ 2
body { background: linear-gradient(to right bottom, #f08010, #8050a0, #1080f0); }
17th Sep 2017, 1:16 PM
Calviղ
Calviղ - avatar
0
oh thanks
17th Sep 2017, 1:14 PM
PugBlaster
PugBlaster - avatar