<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>background-color</title>
</head>
<style>
h1 {
background-color: #00ff00;
}
h2 {
background-color: rgb(255,0,255);
}
p {
background-color: lightblue;
}
</style>
<body>
<h1> Bienvenidos a archilatutoriales </h1>
<h2> Tutoriales de Programacion web </h2>
<br>
<p> Los background pueden escribirse en codigo, en rgb o en letras </p>
</body>
</html>