Computer Studies

Create a Webpage by using HTML codes with the details given below

Caption: TV channels

TV Channels
ZEEZee News
Zee Cinema
STARStar Sports
Star Plus

The other details are: Body Bgcolor="Pink", Table Border="2", Bordercolor="Red" Bgcolor="Green".

HTML Advanced Features

111 Likes

Answer

<HTML>
<HEAD> 
<TITLE> Question 6 </TITLE>
</HEAD>
<BODY BGCOLOR = "PINK">
<TABLE BORDERCOLOR = "RED" BORDER = "2" BGCOLOR = "GREEN">
	<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>

Answered By

74 Likes


Related Questions