Forum Moderators: not2easy
However if your table is all to be the same size in HTML in can be done like this e.g.:
<table border="1" cellpadding="2" cellspacing="0" width="100%" font size="6" style="font-family: Tahoma; font-size: 10pt">
However this is only a variation on CSS as in it is classed as an in-line style as opposed to an embedded or external style
or the really long winded way, i.e. no CSS i.e. pure HTML is to apply the font-size setting to each individual cell, but this is where "code bloat" comes in..
table properties as per normal
then:
<td><font size="2">your text here</font></td>
and this needs to be done for each cell witin your table
whereas with andreas' suggestion you type the following lines
<style type="text/css">
td {font-size: 10pt}
</style>
within the head tags of your document (embedded style)..and reduce the need to type the font size (open and close tags) for each cell
Welcome to the marvels of CSS, don't be put off, it can reduce your code..
and if you ever want to change that font-size you only need to amend one line and not every instance within your document
and that's only embedded you should try external...that means one change for an entire website if you want..
Suzy
:)