Color de Fondo en CSS
<html>
<head>
<style type="text/css">
body {background-color: yellow}
h1 {background-color: #00ff00;}
h2 {background-color: transparent;}
</style>
</head>
<body>
<h1>Este es el encabezado 1</h1>
<h2>Este es el encabezado 2</h2>
</body>
</html>
Resultado
Este es el encabezado 1
Este es el encabezado 2
Establecer borde con CSS
<html>
<head>
<style type="text/css">
p{
border: medium double rgb(250,0,255);
}
</style>
</head>
<body>
<p>Texto rodeado por borde en CSS</p>
</body>
</html>
Resultado
Texto rodeado por borde en CSS
Color del Texto en CSS
<html>
<head>
<style type="text/css">
h1 {color: #00ff00;}
h2 {color: #dda0dd;}
</style>
</head>
<body>
<h1>Encabezado 1</h1>
<h2>Encabezado 2</h2>
</body>
</html>
Resultado
Encabezado 1
Encabezado 2