Answers for "html default background color"

10

html background color

<html>
 
<body style="background-color:red;">
  <p> test <p/> 
  <body/>
  </html>
Posted by: Guest on February-23-2020
2

html background color

<body style="background-color:grey;">
Posted by: Guest on August-01-2021
5

background color using css

/* To apply color to background you have to use 'background-color' property and value of property is color name. */
html,body {
  background-color: blue;
}
Posted by: Guest on June-04-2020

Code answers related to "html default background color"

Browse Popular Code Answers by Language