HTML Forms - Input Types - Cheat Sheet

HTML Short Notes

HTML Basics 🔗

HTML Heading 🔗

HTML Paragraph 🔗

HTML Formatting 🔗

HTML Quotation 🔗

HTML Links 🔗

HTML List 🔗

HTML Tables 🔗

HTML Forms 🔗


HTML Tables - Cheat Sheet

<table> - Define table

<caption> - Table caption

<tr> - Row in a table

<th> - Column header

<td> - column - table data

<thead> - Set of column headers

<tbody> - Set of table rows

<tfoot> - Summarizing columns


    <table border="1px">
        <caption>
            table caption
        </caption>
        <tbody>
            <tr>
                <th>header 1</th>
                <th>header 2</th>
                <th>header 3</th>
                <th>header 4</th>
                <th>header 5</th>
            </tr>
        </tbody>
        <tbody>
            <tr>
                <td>column 1</td>
                <td>column 2</td>
                <td>column 3</td>
                <td>column 4</td>
                <td>column 5</td>
            </tr>
        </tbody>
    </table>

Outcome:

table caption
header 1 header 2 header 3 header 4 header 5
column 1 column 2 column 3 column 4 column 5



HTML Forms - Input Types - Cheat Sheet

Popular Posts