Write HTML code for this table

HTML 5 / HTML Table

669

Program:

<!DOCTYPE html>
<html>
    <head>
        <title>Practice</title>
    </head>
    <body>
        <table border="1" cellpadding="10" cellspacing="0">
            <tr>
                <td rowspan="2">Student Name</td>
                <td rowspan="2">Course</td>
                <td colspan="2" align="center">Hours</td>
            </tr>
            <tr>
                <td>Credit</td>
                <td>Contact</td>
            </tr>
            <tr>
                <td>Adam</td>
                <td>Programming</td>
                <td>4</td>
                <td>5</td>
            </tr>
            <tr>
                <td>Harry</td>
                <td>ITC</td>
                <td>4</td>
                <td>5</td>
            </tr>
            <tr>
                <td>Jill</td>
                <td>English</td>
                <td>3</td>
                <td>3</td>
            </tr>
            <tr>
                <td>Tom</td>
                <td>Math</td>
                <td>3</td>
                <td>3</td>
            </tr>
        </table>
    </body>
</html>

Output:

no

Explanation:

no

This Particular section is dedicated to Programs only. If you want learn more about HTML 5. Then you can visit below links to get more depth on this subject.