Sunday, November 20, 2022

Basic HTML Tables - Layout, HTML Tables, Attributes, Aside, Footer, Tr tag, Td tag, Th tag, Tbody

 Basic HTML Tables - Layout, HTML Tables, Attributes, Aside, Footer, Tr tag, Td tag, Th tag, Tbody


<table>
    <thead>
        <th>
            roll number
        </th>
        <th>
            name

        </th>
    </thead>
    <tbody>
        <tr>
            <td>
                7</td>

            <td>
                Dhoni</td>
        </tr>
        <tr>
            <td>
                8</td>

            <td>
                Kohli</td>
        </tr>
    </tbody>
</table>










No comments:

Post a Comment

ads vert

Basic HTML Tables - Layout, HTML Tables, Attributes, Aside, Footer, Tr tag, Td tag, Th tag, Tbody

  Basic HTML Tables - Layout, HTML Tables, Attributes, Aside, Footer, Tr tag, Td tag, Th tag, Tbody < table >      < thead >    ...