KnowledgeBoat Logo
|

Computer Applications

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.

HTML Advanced Features

7 Likes

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>

Answered By

4 Likes


Related Questions