Is it possible to add html to this table? For example <font> and </font> type of attributes? Thanks <table width="100%"> <tr><td align="center"><b>Site home page</b></td></tr> <tr><td align="center"> </td></tr> </table> Code (markup):
Yes, you can add html elements to the table. Just like you've used bold tag in one of the row. <tr><td align="center"><b>Site home page</b></td></tr> Code (markup): <tr><td align="center"><font color="#351515>Site home page</font></td></tr> Code (markup): Although, I suggest using css for manging the table. http://www.w3schools.com