“Color de fondo HTML” Código de respuesta

Cómo hacer un color de fondo en HTML

<body style="background-color: #fff">
  <!---this will change the body color---!>

</body>
Famous Fly

Color de fondo CSS RGB

body {
  background-color: rgb(255,255,255);
}
Aggressive Alligator

Color de fondo de fondo CSS

html,body {
  background-color: red;
}
No Name Pro

html cómo cambiar el color de fondo

<body style="background-color:powderblue;">
<p style="background-color:tomato;">This paragraph has a red background.</p>
</body>
Hello There

HTML Cambiar color de fondo

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Backgorund Color</title>
   </head>
   <body style="background-color:grey;">
      <h1>Products</h1>
      <p>We have developed more than 10 products till now.</p>
   </body>
</html>
Michael Futral

Color de fondo HTML

<body style="background-color:grey;">

Respuestas similares a “Color de fondo HTML”

Preguntas similares a “Color de fondo HTML”

Más respuestas relacionadas con “Color de fondo HTML” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código