<html>
<head>
<title>HTML Colors Names</title>
</head>
<body>
<div style="color:red">Red Color Text</div>
</body>
<html>
<html>
<head>
<title>RGB Color</title>
</head>
<body>
<div style="color:rgb(255,0,0);">RGB Color Text</div>
</body>
<html>
<html>
<head>
<title>HEX Color</title>
</head>
<body>
<div style="color:#FD0000;">HEX Color Text</div>
</body>
<html>
<html>
<head>
<title>Background Color</title>
</head>
<body>
<style type="text/css">
.content_bg{ background:#F60;}
</style>
<div class="content_bg">This is Backgroung Color</div>
</body>
<html>
<html>
<head>
<title>Background Images</title>
</head>
<body>
<style type="text/css">
.content_bg_image{
background-image:url(background_images.jpg);
background-repeat:repeat;
background-position:center;
background-attachment:scroll;
}
</style>
<div class="content_bg_image">This is Backgroung Image</div>
</body>
<html>