CBSE Class 10 Computer Applications Question 29 of 31

Solved 2024 Sample Question Paper CBSE Class 10 Computer Applications (165) — Question 2

Back to all questions
2
Question

Question 24(ii)

Observe the screenshot of the given web page:

Observe the screenshot of the web page. Write the suitable HTML code to design it. CBSE 2024 Computer Applications Code 165 Class 10 Sample Question Paper Solved.

Write suitable HTML code to design it.

Answer
<HTML>
<BODY>
<TABLE BORDER = "1">
<TR>
<TH COLSPAN = "3">SKILL WORKSHOPS</TH>
</TR>
<TR>
<TH>SNO</TH>
<TH>SKILL</TH>
<TH>DAYS</TH>
</TR>
<TR>
<TD>1</TD>
<TD>Communication Skills</TD>
<TD>Monday, Wednesday</TD>
</TR>
<TR>
<TD>2</TD>
<TD>Art, Craft</TD>
<TD>Tuesday, Friday</TD>
</TR>
<TR>
<TD>3</TD>
<TD>Personality Development </TD>
<TD>Wednesday, Saturday</TD>
</TR>
</TABLE>
</BODY>
</HTML>