KnowledgeBoat Logo
|

Computer Studies

Write down HTML codes to create a table with table headings and other details as given below

RankMedal
FirstGold
SecondSilver
ThirdBronze

HTML Advanced Features

130 Likes

Answer

<HTML>
<HEAD> 
<TITLE> Question 3 </TITLE>
</HEAD>
<BODY>
<TABLE BORDERCOLOR = "ORANGE" BGCOLOR = "BEIGE">
	<TR BGCOLOR = "ORANGE">
	<TH> Rank </TH>
	<TH> Medal </TH>
	</TR>
	<TR>
	<TD> First </TD> <TD> Gold </TD>
	</TR>
	<TR>
	<TD> Second </TD> <TD> Silver </TD>
	</TR>
	<TR>
	<TD> Third </TD> <TD> Bronze </TD>
	</TR>
</TABLE>
</BODY>
</HTML>

Answered By

73 Likes


Related Questions