Html. Css. Body and table background
<html>
<head>
<style>
body {
background-image:url('logo3.gif');
background-color:#cccccc;
background-repeat: no-repeat;
}
td {
background-color: yellow;
font-size: 42px;
}
table {
width: 80%;
}
</style>
</head>
<body>
<table align = "center" >
<tr>
<td>
Text C <br /> Text C <br /> Text C <br />
Text C <br /> Text C <br /> Text C <br />
Text C <br /> Text C <br /> Text C <br />
Text C <br /> Text C <br /> Text C <br />
Text C <br /> Text C <br /> Text C <br />
Text C <br /> Text C <br /> Text C <br />
Text C <br /> Text C <br /> Text C <br />
</td>
</tr>
</table>
</body>
</html>