Different background color
<!Doctype html>
<html>
<head>
<stylr type="text/css">
.fool1
{
background-color:green;
color:white;
}
.fool2
{
background-color:blue;
color:yellow;
}
fool3{
background-color:inherit;
color:inhert;
font-weight;normal;
}
</style>
</head>
<body>
<div class="fool1">
<h1 class="bar1">
hello world!!!!!!!!!!!!</h1></div>
<div class="fool2">
<h2 class="bar2">
hello world,,,,,,
</h2>
</div>
<div class="fool3">
<h3 class="bar1">
Hello world3
</h3>
</div>
</body>
</html>
Comments