Tables in html

<!--by default no border of the table--> <!--tr(table row),th(table heading by default in bold style),td(table data)--> <table> <tr> <th>First_Name</th> <th>Last_Name</th> <th>Marks</th> </tr> <tr> <td>Abc</td> <td>X</td> <td>90</td> </tr> <tr> <td>Jiu</td> <td>Z</td> <td>89</td> </tr> <tr> <td>Bcd</td> <td>Y</td> <td>60</td> </tr> </table>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.