Computer Science, asked by BrainlyStarPrincess, 8 months ago

Answer please!

HTML Codes ;) ​

Attachments:

Answers

Answered by CutePrincess01
14

<HTML>

<HEAD>

<TITLE> TV CHANNELS </TITLE>

</HEAD>

<BODY>

<CAPTION> TV CHANNELS </CAPTION>

<TR> <TD ROWSPAN = "2" > ZEE </TD>

<TD> ZEE NEWS </TD>

</TR>

<TR>

<TD> ZEE CINEMA </TD>

</TR>

<TR><TD ROWSPAN = "2" > STAR</TD>

<TD> STAR SPORTS </TD>

</TR>

<TR>

<TD> STAR PLUS </TD>

</TR>

</TABLE>

</BODY>

</HTML>

Answered by CoolestCat015
27

Tag and attributes to be used:-

  • <TABLE> - Defines the opening of a table.
  • <TH> - Used to define Table Heading.
  • <TR> - Used to define a Row.
  • <TD> - Used to define Cell's Content.
  • <Caption> - Used to define Caption for a table.
  • Colspan - Used to define the number of columns the cell will span.
  • Rowspan - Used to define the number of rows the cell will span.

The HTML Coding for the content would be as follows:-

<HTML>

<Head>

<Title> Cats Are Best ! </Title>

</Head>

<Body>

<Table>

<Caption>TV Channels</Caption>  

<Tr>

   <Th colspan="2">TV Channels</Th>

 </Tr>

 <Tr>

   <Td rowspan="2">Zee</Td>

   <Td>Zee News</Td>

 </Tr>

 <Tr>

   <Td>Zee Cinema</Td>

 </Tr>

 <Tr>

   <Td rowspan="2">Star</Td>

   <Td>Star Sports</Td>

 </Tr>

 <Tr>

   <Td>Star Plus</Td>

 </Tr>

</Table>

</Body>

</HTML>

Similar questions