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 Answer
+ 3
You can style the background using CSS on <body>:
body {
background-color: #ff9900;
}