Computer Studies
Design a table using HTML codes with the table headings viz. Subject, Paper and Marks. Create 3 columns and 4 rows to enter marks obtained in different exams in English, Hindi and Science.
Subject | Paper | Marks |
---|---|---|
English | Language | 93 |
Literature | 91 | |
Hindi | Language | 89 |
Literature | 92 | |
Science | Physics | 93 |
Chemistry | 90 | |
Biology | 88 |
Set the border size to 2, border color to green, table background color to yellow and body background color to pink.
HTML Advanced Features
70 Likes
Answer
<HTML>
<HEAD>
<TITLE> Question 7 </TITLE>
</HEAD>
<BODY BGCOLOR = "PINK">
<TABLE BORDERCOLOR = "GREEN" BORDER = "2" BGCOLOR = "YELLOW">
<TR>
<TH> Subject </TH>
<TH> Paper </TH>
<TH> Marks </TH>
</TR>
<TR>
<TD ROWSPAN = "2"> English </TD> <TD> Language </TD> <TD> 93 </TD>
</TR>
<TR>
<TD> Literature </TD> <TD> 91 </TD>
</TR>
<TR>
<TD ROWSPAN = "2"> Hindi </TD> <TD> Language </TD> <TD> 89 </TD>
</TR>
<TR>
<TD> Literature </TD> <TD> 92 </TD>
</TR>
<TR>
<TD ROWSPAN = "3"> Science </TD> <TD> Physics </TD> <TD> 93 </TD>
</TR>
<TR>
<TD> Chemistry </TD> <TD> 90 </TD>
</TR>
<TR>
<TD> Biology </TD> <TD> 88 </TD>
</TR>
</TABLE>
</BODY>
</HTML>
Answered By
40 Likes
Related Questions
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 Create a Webpage by using HTML codes with the details given below
Caption: TV channels
TV Channels ZEE Zee News Zee Cinema STAR Star Sports Star Plus The other details are: Body Bgcolor="Pink", Table Border="2", Bordercolor="Red" Bgcolor="Green".
United club of Jamshedpur wants to create a form for online registration for membership. The particulars are as mentioned below:
Write an HTML program to create form as shown above to help the club.