Computer Applications

Ayushi has to prepare a demo table in which she has to mention question number and its marking. Help her to write the code for the below table.

Ayushi has to prepare a demo table in which she has to mention question number and its marking. Help her to write the code for the table. Computer Applications Code 165 Sample Paper Solved CBSE Class 10.

HTML Advanced Features

6 Likes

Answer

<TABLE>
<TR>
    <TH> question </TH>
    <TH> marks</TH>
</TR>
<TR>
    <TD ROWSPAN = "3"> 1 </TD>
    <TD> 2 </TD>
</TR>
<TR>
    <TD> 2 </TD>
</TR>
<TR>
    <TD> 5 </TD>
</TR>
</TABLE>

Answered By

4 Likes


Related Questions