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;
}