5. Write down HTML codes to create a table with table headings and other
details as given below:
Attachments:
Answers
Answered by
0
Answer:
can't understand the question
Answered by
0
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>
Similar questions