Computer Applications

Ram has to prepare a table as given below. He is a new technical team intern. Help him to write the code of below table.

Ram has to prepare a table as given. He is a new technical team intern. Help him to write the code of below table. Computer Applications Code 165 Sample Paper Solved CBSE Class 10.

HTML Advanced Features

2 Likes

Answer

<HTML>
    <BODY>
        <TABLE border = "3" cellspacing = "3">
        <TR>
        <TH align = "center"> ADMNO </TH>
        <TH align = "center"> SNAME </TH>
        <TH align = "center"> NAME </TH>
        <TH align = "center"> DOB </TH>
        </TR>
        <TR>
        <TD> 1110 </TD>
        <TD> MANJIT </TD>
        <TD> RANJIT </TD>
        <TD> 4-MAR-1998 </TD>
        </TR>
        </TABLE>
    </BODY>
</HTML>

Answered By

2 Likes


Related Questions