[help] Font Tag Size Option

I am trying to use the size option in the "font" tag, Any help would be really appreciated.

code...

<html>
<body bgcolor='#000000' text='#ffffff'>
<head><title>HTML table to 20</title>
<font face="arial" size="2">    <!---- Need help here---!>  
<table border=2>
<tr><td>1</td><td>2</td><td>3</td><td>4</td><td>5</td></tr>
<tr><td>6</td><td>7</td><td>8</td><td>9</td><td>10</td></tr>
<tr><td>11</td><td>12</td><td>13</td><td>14</td><td>15</td></tr>
<tr><td>16</td><td>17</td><td>18</td><td>19</td><td>20</td></tr>
</table>
</font>
</body>
</head>
</html>

I know the table seems really trivial but the class is going to turn it into javaScript using "document.write" and some other code.

#152704

Soooo....what exactly is the problem? :blink:

#152709

Eeek!!! Font tags! :blink:

Wouldn't it be easier/cleaner/more polished/better for the environment to use styles (CSS)?

You could apply the style at body, table or cell level, which is what I'm guessing you're trying to do.

#152739

I belive he wants to have the properties within the to be applied to all the

's

First off the

goes outsite of
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>

Secondly, add this inside the

<style>
td { font-family: arial; font-size: 12px }
</style>

I like pixles better than the standard. And now you can get rid of the

Edit My syntax was wrong.

#152747

HTML table to 20

   <!---- Need help here---!>  

12345

678910

1112131415

1617181920

#152749

Hey! When you edit a post it gets moved down! I posted before wizard then edited it, and it ended up after his post. Is the board supposed to do that?

#152754

No.

Mine Posted: Apr 29 2004, 12:02 PM

Yours: Posted: Apr 29 2004, 12:03 PM

#152755

WIZARD! Works like a f*cking charm! DAMN YOU ARE GOOD!

Thank you ALL SO MUCH!!!!

BTW: The teacher never really got spacific on where tags spacifically go. Sorry! And thanks again!

#152862