KnowledgeBoat Logo
|

Computer Applications

Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for any four specifications out of the given five.

Write the HTML code to design the web page as shown, considering the specifications that follow. Sample Paper, Computer Applications Code 165 Kips Cyber Beans Solutions CBSE Class 10.

Specification 1: Heading of the web page should be "Project Tiger". The links in the page should be green, active links should be pink, and visited links should be orange.

Specification 2: The image "tiger.jpg" is to be inserted below the heading.

Specification 3: The table consists of 6 rows and 2 columns and has border size as 2.

Specification 4: The column heading "Success of the Project Tiger Mission" occupies two columns.

Specification 5: In the last line, "Join the mission!" should be a link to the website "projectiger.com".

HTML Advanced Features

25 Likes

Answer

<HTML>
<HEAD>
<TITLE>
Project Tiger
</TITLE> 
</HEAD>
<BODY LINK = "GREEN" ALINK = "PINK" VLINK = "ORANGE">
<H3 ALIGN = "CENTER"> Project Tiger </H3>
<CENTER>
<IMG SRC = "TIGER.JPG" ALT = "IMAGE OF TIGER">
</CENTER>
<TABLE ALIGN = "CENTER" BORDER = "2">
<TR>
<TH COLSPAN = "2"> Success of the Project Tiger Mission</TH>
</TR>
<TR>
<TH> Year </TH>
<TH> Number of Tigers</TH>
</TR>
<TR ALIGN = "CENTER">
<TD> 2006 </TD>
<TD> 1411</TD>
</TR>
<TR ALIGN = "CENTER">
<TD> 2010</TD>
<TD> 1706</TD>
</TR>
<TR ALIGN = "CENTER">
<TD> 2014</TD>
<TD>2226 </TD>
</TR>
<TR ALIGN = "CENTER">
<TD>2018 </TD>
<TD>2967 </TD>
</TR>
</TABLE>
<P ALIGN = "CENTER">
<A HREF = "https://PROJECTTIGER.COM"><B>Join the Mission!</B></A>
</P>
</BODY>
</HTML>

Answered By

20 Likes


Related Questions