CBSE Class 10 Computer Applications
Question 12 of 12
Solved Sample Paper 4 — Question 2
Back to all questions 2
Question 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 "Save Tiger".
(ii) Image used is tiger. jpg.
(iii) Text color is "green".
(iv) Table border is 3 px and align center.
(v) The color of the heading of the page is orange.
<HTML>
<HEAD>
<TITLE>Save Tiger</TITLE>
</HEAD>
<BODY>
<FONT color = "Orange">
<H1 align = "CENTER"> Save Tiger </H1>
</FONT>
<IMG src = "tiger.jpg" width = "80" height = "80" align = "right">
<FONT color = "green">
<P>
Collect information for<BR>
<U>
<UL>
<LI>Addressing issues</LI>
<LI>State wise agenda</LI>
<LI>What can I do</LI>
<LI>Join the rear</LI>
</UL>
</U>
<TABLE border = "3" align = "center">
<TR>
<TD>1</TD>
<TD>Speak Up</TD>
</TR>
<TR>
<TD>2</TD>
<TD>Lead the Change</TD>
</TR>
<TR>
<TD>3</TD>
<TD>Donate</TD>
</TR>
<TR>
<TD>4</TD>
<TD>Be informed</TD>
</TR>
</TABLE>
<P>
For further enquiries <A href = "Contact.html">Contact Us</A>
</P>
</FONT>
</BODY>
</HTML>