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.

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
a. Write an external CSS code snippet to set the colour of the web page as pink.
b. Write an inline CSS code to set the Font size for a paragraph as 15.
Karan has recently started working as a content writer. Suggest the steps he can take to avoid plagiarism.
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.

Specification 1: The heading "Types of Artificial Intelligence" should be a third level heading and the background colour of the page should be aqua.
Specification 2: The page should consist of a list and data as shown in the image.
Specification 3: A video "AItypes.mp4" should be embedded below the list.
Specification 4: The video should have controls to enable the user to play it, manage the volume, etc.
Specification 5: The last line "Click the play button to view more information about Artificial Intelligence" should be inserted as a paragraph.
Case Study 1

Consider the following code created by Snehal for the given web page:
<html> <Head><Title> Form Elements<...............></Head> --- Statement 1 <............... bgcolor=" lightCyan "> --- Statement 2 <FORM> Login: <INPUT Type= "Text" Name= "Name" Size= 30 Value=""> Password: <INPUT Type= "..............." Name= "code" Size=30 Value=""> --- Statement 3 <P>Course interested in:</P> <INPUT Type="..............." Name= "HTML" Value= "HTML"/> HTML --- Statement 4a <INPUT Type="..............." Name= "PYTHON" Value= "PYTHON" >PYTHON --- Statement 4b <INPUT Type="..............." Name= "C++" Value= "C++" > --- Statement 4c </Form> <p> To upload your identity proof click <................>="www.kyc.com">KYC.com</a></p> - Statement 5 </body> </html>Based on the given information, answer the questions:
a. Write the tag to complete Statement 1.
b. Write the suitable option for the blank given in Statement 2.
c. Write the appropriate answer for the blank given in Statement 3, such that the input is masked while the user enters the form.
d. Write the appropriate answer for the blank given in Statement 4a, 4b, and 4c to display the input elements as shown in the web page.
e. Write the appropriate answer for the blank given in Statement 5 to show the link of the web page.