KnowledgeBoat Logo
|

Computer Applications

Arvind has to prepare a list of students belonging to different classes. He has to mention their roll numbers and footers at the bottom of the table. Observe the given table and write the code to display this table.

Arvind has to prepare a list of students belonging to different classes. He has to mention their roll numbers and footers at the bottom of the table. Observe the given table and write the code to display this table. Computer Applications Code 165 Sample Paper Solved CBSE Class 10.

HTML Advanced Features

7 Likes

Answer

<TABLE border = "1">
    <TR>
        <TH>Roll Number</TH>
        <TH>Name</TH>
        <TH>Class</TH>
    </TR>
    <TR>
        <TD align = "center">105</TD>
        <TD>Amit</TD>
        <TD>12 A</TD>
    </TR>
    <TR>
        <TD align = "center">106</TD>
        <TD>Ankit</TD>
        <TD>12 B</TD>
    </TR>
    <TR>
        <TD align = "center">107</TD>
        <TD>Arnab</TD>
        <TD>12 C</TD>
    </TR>
    <TR>
        <TD>Footer 1</TD>
        <TD>Footer 2</TD>
        <TD>Footer 3</TD>
    </TR>
</TABLE>

Answered By

3 Likes


Related Questions