I want to create a webpage with transparent background, a table and some text. I have seen posts related to this, but due to my lack of familiarity with css, I somehow cant get my code to work. I just want a transparent background, while this code is making everything transparent. Can someone kindly help.
<html>
<head><style type="text/css">
div.transbg {background-color:#4a6c9b; opacity:0.6;}
</style></head>
<div class="transbg">
<body><Center><font color="#FFFFFF">
<b>Toll Charges</b>
<table bgcolor="#000000" cellspacing=3>
<tr>
<td bgcolor="#009900"><font color="#FFFFFF" align="left"> Class 2 inc Private </font></td>
<td bgcolor="#009900"><font color="#FFFFFF" align="right"> A$ 4.95 </font></td>
</tr>
<tr>
<td bgcolor="#009900"><font color="#FFFFFF" align="left"> Class 2 inc Commercial </font></td>
<td bgcolor="#009900"><font color="#FFFFFF" align="right"> A$ 13.95 </font></td>
</tr>
</table>
<br>
Toll has to be paid within 48 hrs of passage, else an additional A$ 13.95 of administration charges would be added
</font></Center>
</div>
</body>
</html>