<!DOCTYPE html>
<html>
<head>
    <title>Xem ví dụ</title>
    <style type="text/css">
        table, th, td{
            border:1px solid black;
        }
        table{
            caption-side:top;
        }
    </style>
</head>
<body>
    <table>
        <caption>SINH VIÊN</caption>
        <tr>
            <th>Họ tên</th>
            <th>Giới tính</th>
            <th>Quê quán</th>
        </tr>
        <tr>
            <td>Trần Anh Đức</td>
            <td>Nam</td>
            <td>Cần Thơ</td>
        </tr>
        <tr>
            <td>Kiều Thị Thu Hằng</td>
            <td>Nữ</td>
            <td>Vĩnh Long</td>
        </tr>
        <tr>
            <td>Dương Kim Thương</td>
            <td>Nam</td>
            <td>Trà Vinh</td>
        </tr>
    </table>
</body>
</html>