View Full Version : I need help with a table


Mindy Sue
02-13-2010, 05:37 PM
Ok. So I have my table almost the way I want it, but I don't know how to change the font size for just a portion of the text. I want the phrases "(all 3 gyms)" "(Marysville gym after hours)" and "(Port Huron only 24/7)" to be a smaller font size. Can someone help me?




<html>
<body>
<table width="569" height="187" border="0">
<tr>
<h4>
<th width="224" align="center">MEMBERSHIP</th>
<th width="191" align="center">EFT WITHDRAWAL</th>
<th width="134" align="center">JOINING FEE</th>
</h4>
<tr>
<tr>
<tr>
<tr>
<tr>
<tr>
<tr>
<tr>
<tr>
<tr>
<tr>
<tr>
<th align="center"></th>
</tr>
<tr>
<td align="center" bgcolor="#AEAEAE">Individual (all 3 gyms) </td>
<td align="center" bgcolor="#AEAEAE">$36</td>
<td align="center" bgcolor="#AEAEAE">$25</td>
</tr>
<tr>
<td align="center">Couple (all 3 gyms)</td>
<td align="center">$50</td>
<td align="center">$25</td>
</tr>
<tr>
<td align="center" bgcolor="#AEAEAE">Student/Senior (all 3 gyms)</td>
<td align="center" bgcolor="#AEAEAE">$31</td>
<td align="center" bgcolor="#AEAEAE">$25</td>
</tr>
<tr>
<td align="center"><p>Midnight Express </p>
<p>(Marysville gym after hours) </p></td>
<td align="center">$19</td>
<td align="center">$25</td>
</tr>
<tr>

</tr>
<td align="center" bgcolor="#AEAEAE"><p>Viking Express </p>
<p>(Port Huron only 24/7)</p></td>
<td align="center" bgcolor="#AEAEAE">$19</td>
<td align="center" bgcolor="#AEAEAE">$25</td>
</tr>
<tr>

</tr>
</table>

</body>
</html>

grifterlake
02-13-2010, 10:38 PM
Ok. So I have my table almost the way I want it, but I don't know how to change the font size for just a portion of the text. I want the phrases "(all 3 gyms)" "(Marysville gym after hours)" and "(Port Huron only 24/7)" to be a smaller font size. Can someone help me?

You can use a font tag with variations of the following parameters:

<font face="Georgia" size="7" color="#0000FF">Individual (all 3 gyms)</font>

Just change face, size, color and other attributes to what you want.

GL

Chris
02-16-2010, 11:39 AM
Or just put <small> </small> around the text you want to be smaller.