Computer Studies
Write down HTML codes to create a table with table headings and other details as given below
| Rank | Medal |
|---|---|
| First | Gold |
| Second | Silver |
| Third | Bronze |
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
Distinguish between Colspan and Rowspan
Distinguish between <TR> and <TD> tags
Create a webpage to display your marks of First Terminal Examination by using table tags. Create 3 columns viz. Sl. No., Subject and Marks. Also make 5 rows to enter marks for 5 subjects viz. English, Hindi, Science, Social Science and Computer Science. Set the border size to 2 and border color to blue.
Design a table using HTML codes with the table headings viz. Landmark, City, and Country. Create 3 columns and 4 rows to enter all the details given below. Set the border size to 2, border color to red and table background color to yellow.
Landmark City Country Taj Mahal Agra India Leaning Tower Pisa Italy Eiffel Tower Paris France