0
(Solved) How do I change the background color in a web code?
I’m making a page, and I’m wondering how to change the background of a page, so it isn’t white. How do I do that?
1 Resposta
+ 3
You can style the background using CSS on <body>:
body {
background-color: #ff9900;
}