0

How do you change the background of a website

HTML https://code.sololearn.com/WP0dj4YHVYMX/?ref=app

16th Nov 2019, 6:13 PM
Sophia
3 Answers
+ 1
body {background-color: color name;}
16th Nov 2019, 6:32 PM
Anna/ĐĐœŃ
Anna/ĐĐœŃ - avatar
0
You can use Inline, External or internal CSS for this. For inline <body style="background-color:color-name;"> For internal CSS You should write as <style > body { background-color:color-name; } </style> And for external CSS you may use above code except style tags in CSS file.
17th Nov 2019, 1:47 AM
usman
usman - avatar