0
How do i insert a background color in my web page
3 Respuestas
+ 4
most easiest but not recommended way
<body bgcolor="color name"> anything </body>
for production , use the previous two comments
+ 3
at css :
body{
background-color:red;
}
or blue, or wathever color you want. Even you can put RGB or hexas.
0
<style>
body{
background:red;
}
</style>