1.

Write HTML code to display the following table :Specifications:The title of the webpage is “Schedule”The Caption of the Table is Duty Chart.8 AM, 10 AM, 12 AM are Headings given to the table.

Answer»

<HTML>

<HEAD>

<TITLE>

schedule

</TITLE>

</HEADE>

<BODY>

<TABLE Border =1>

<CAPTION>Duty Chart</CAPTION>

<TR>

<TH>8 AM</TH>

<TH>10 AM</TH>

<TH>12 AM</TH>

</TR>

<TR>

<TD> KEVIN</TD>

<TD> KHUSHBOO</TD>

<TD> AMARJEET</TD>

</TR>

</TABLE>

</HTML>



Discussion

No Comment Found

Related InterviewSolutions