Problem 31. Create a table without tbody. Now use 'view page source' button to check whether it has a tbody or not.

<body>                              
    <table>
        <tr>
            <th>First Name</th>
            <th>Middle Name</th>
            <th>Last Name</th>
        </tr>
        <tr>
            <td>Anubhav</td>
            <td></td>
            <td>Tiwari</td>
        </tr>
        <tr>
            <td>Happy</td>
            <td></td>
            <td>Tiwari</td>
        </tr>
    </table>
</body>
<style>
    html, body {
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        background-color: #efefef;
    }
                  
    table {
        margin-top: 25px;
        /* margin-left: 25px; */
        width: 100%;
    }
                  
    tr {
        text-align: center;
    }
                  
    th {
        border-top: 3px solid #fefefe;
        border-bottom: 3px solid #fefefe;
        font-size: 1.5em;
        padding: 5px;
    }
                  
    td {
        font-size: 1.5em;
        border-bottom: 3px solid #fefefe;
        padding: 5px;
    }
</style>

Output:

No, view page source shows raw source code. But in inspect it shows tbody.