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:

Write suitable HTML code to design it.
<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>