Computer Applications
An artist has to prepare a table to showcase the type of paintings he has created, their quantity and their price. Help him to make the table. Observe the table and write the code to generate it.

HTML Advanced Features
6 Likes
Answer
<HTML>
<HEAD>
<TITLE>Table</TITLE>
</HEAD>
<BODY>
<TABLE border = "3" align = "center" cellspacing = "3">
<CAPTION> Available Paintings </CAPTION>
<TR>
<TD rowspan = "5"> I <BR> N <BR> D <BR> I <BR> A <BR> N </TD>
<TD colspan ="3"> PAINTING </TD>
</TR>
<TR>
<TH align = "center"> NAME </TH>
<TH> QTY </TH>
<TH> PRICE </TH>
</TR>
<TR>
<TD> Oil Painting </TD>
<TD align = "center"> 4 </TD>
<TD> 3000 </TD>
</TR>
<TR>
<TD> Glass Painting </TD>
<TD align = "center"> 2 </TD>
<TD> 5000 </TD>
</TR>
<TR>
<TD> Canvas </TD>
<TD align = "center"> 2 </TD>
<TD> 1000 </TD>
</TR>
</TABLE>
</BODY>
</HTML>
Answered By
4 Likes
Related Questions
Write an HTML code to
(i) Create a link for garden.jpg located at
D:\.(ii) Display an inline image named pencil.jpg located at C: in the center of your web page.
Write the HTML code to add Audio and Video elements in a web page.
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) Background color of page is yellow.
(ii) Font style for the page is arial.
(iii) Image used is gov.jpeg.
(iv) Text color of the paragraph is red.
(v) E-mail id for bottom message is
abc@xyz.com.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) Link color is black, background color is yellow and visited link color is green.
(ii) Image used is "Computer.jpg".
(iii) Caption of table is blue.
(iv) Table border is blue and of size 2. Showcasing the advantages of computers.
(v) The 4 links are monitor.html, system.html, mouse.html and keyboard.html.