KnowledgeBoat Logo
LoginJOIN NOW

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 given specifications.

Write the HTML code to design the web page as shown, considering the specifications that follow. You can write the code for given specifications. Computer Applications Code 165 Sample Paper Solved CBSE Class 10.

(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 Advanced Features

4 Likes

Answer

<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>

Answered By

4 Likes


Related Questions