Answers for "table attributes html"

2

table tag

<table style="width:100%">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
</table>
Posted by: Guest on August-26-2020
9

table html tages

<table>
  <tr> <!-- This is the first row -->
    <th>This is the heading</th>
    <th>Next heading to the right</th>
  </tr>
  <tr> <!-- This is the second row -->
    <td>This is where the table data goes</td>
    <td>This is the second columns data</td>
  </tr>
</table>
Posted by: Guest on April-24-2020
0

html5 table

HTML123456789101112<table data-order='[[ 1, "asc" ]]' data-page-length='25'>    <thead>        <tr>            <th>Name</th>            <th>Position</th>            <th>Office</th>            <th>Age</th>            <th>Start date</th>            <th data-class-name="priority">Salary</th>        </tr>    </thead></table>
Posted by: Guest on September-17-2021

Code answers related to "table attributes html"

Browse Popular Code Answers by Language