Here is template page I use to display search results(perl script). Its display results inside a table. I just want correct a little page appearance: to reduce a little font size inside table itself; set page background color RGB #C0C0C0, and table background-color: white. Just not sure where correct this on a right place.
Also, not sure is this first line on right place?
<!-- "start template" -->
<template>
Code:
<html>
<head>
<title></title>
</head>
<body>
<font face="Verdana" size="2"><b>
Total number of records:</b> <<#_total>><b> Matching records:</b> <<#_matches>><br>
<br>
<!-- "start template" -->
<template>
<table border="1" cellpadding="1" cellspacing="0" width="100%">
<tr>
<td>Artist</font></td>
<td>Albums</font></td>
<td>Year</font></td>
<td>Size Mb</font></td>
<td>Mode</font></td>
<td>Kbps</font></td>
<td>Location</font></td>
<td>Time</font></td>
<td>Track</font></td>
<td>Style</font></td>
</tr>
<template>
<tr>
<td><<Artist>></td>
<td><<Albums>></td>
<td><<Year>></td>
<td><<Size Mb>></td>
<td><<Mode>></td>
<td><<Kbps>></td>
<td><<Location>></td>
<td><<Time>></td>
<td><<Track>></td>
<td><<Style>></td>
</tr>
</template>
</table>
<!-- "end template" -->
<b>
Total number of records:</b> <<#_total>> <b>Matching records:</b> <<#_matches>></font>
</body>
</html>