How to add a caption to a table in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
    <head>
        <style>
            table, th, td {
                border: 1px solid lightcoral;
                border-collapse: collapse;
            }
        </style>
    </head>
    <body>

        <table style="width:20%">
            <caption>Workers</caption>
            <tr>
                <th>Name</th>
                <th>Language</th>
            </tr>
            <tr>
                <td>Fox</td>
                <td>PHP</td>
            </tr>
            <tr>
                <td>Angelina</td>
                <td>JavaScript</td>
            </tr>
            <tr>
                <td>Borat</td>
                <td>HTML</td>
            </tr>
            <tr>
                <td>Mr. Bean</td>
                <td>CSS</td>
            </tr>
        </table>

    </body>
</html>

 



answered Dec 13, 2018 by avibootz

Related questions

1 answer 396 views
1 answer 215 views
1 answer 238 views
1 answer 152 views
152 views asked Dec 12, 2018 by avibootz
1 answer 419 views
3 answers 320 views
320 views asked Jun 29, 2021 by avibootz
...