Friday 11 August 2017

HTML code for tables and borders

<!DOCTYPE html>
<html>
<body>
<table border="1mm">
<tr>
    <td><b><center>Header 1</center></b></td>
    <td><b><center>Header 2</b></td>
<tr>
    <td>Row 1, Cell 1</td>
    <td>Row 1, Cell 2</td>
</tr>
<tr>
    <td>Row 2, Cell 1</td>
    <td>Row 2, Cell 2</td>
</body>
</html>

0 comments: