Computer Applications
Arvind has to prepare a list of students belonging to different classes. He has to mention their roll numbers and footers at the bottom of the table. Observe the given table and write the code to display this table.

HTML Advanced Features
7 Likes
Answer
<TABLE border = "1">
<TR>
<TH>Roll Number</TH>
<TH>Name</TH>
<TH>Class</TH>
</TR>
<TR>
<TD align = "center">105</TD>
<TD>Amit</TD>
<TD>12 A</TD>
</TR>
<TR>
<TD align = "center">106</TD>
<TD>Ankit</TD>
<TD>12 B</TD>
</TR>
<TR>
<TD align = "center">107</TD>
<TD>Arnab</TD>
<TD>12 C</TD>
</TR>
<TR>
<TD>Footer 1</TD>
<TD>Footer 2</TD>
<TD>Footer 3</TD>
</TR>
</TABLE>
Answered By
3 Likes
Related Questions
Define cascading style sheet.
Answer the following:
(i) What is the use of dir attribute of <HTML> tag?
(ii) Write the equivalent inline CSS for the following HTML tag.
(a) <body bgcolor = "red">
(b) <img src = "garden.jpg" height = 15 width = 30>
Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for the given specifications.

(i) Title of the page is "People's Public School".
(ii) Link color is "Fuchsia".
(iii) Font face for the page is "Calibri".
(iv) The color of heading of the page is "Red".
(v) Image used as school.jpg.
Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for given specifications.

(i) Title of the page is "Top 5 Films of 2010".
(ii) Font face for the page is "Calibri".
(iii) Link color is "Turquoise".
(iv) The color of heading of the page is "Green".
(v) Image used is bollywood.jpg.