Recent content by carlitosediel

  1. C

    how do i make html tables?

    <html> <body bgcolor="yellow"> <font size=4 face="verdanta"> <table border="1" bgcolor="#007799" width="34%"> <tr> <td>cell1</td> <td>cell 2 </td> </tr> <tr> <table border="1" bgcolor="#007700" width="22"> <td>another one</td> <td>one more</td> </tr> </table> </body> </html> add color,font and...
  2. C

    Can someone tell me what I am doing wrongg??? HTML tables?

    add color and change its size by % or # pixels <html> <body> <h1>blah blah</h1><table border="1" bgcolor="#007799" width="34%"> <tr> <td>cell1</td> <td>cell 2 </td> </tr> <tr> <table border="1" bgcolor="#007700" width="22"> <td>another one</td> <td>one more</td> </tr> </table> <p>Lemme get...
Back
Top