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) Background color of page is yellow.

(ii) Link color is black and visited link color is green.

(iii) Heading of the page is maroon.

(iv) Image used is mainrhino.jpg.

(v) Table border is 2px.

HTML Advanced Features

3 Likes

Answer

<HTML>
    <HEAD>
        <TITLE>INDIAN RHINOCEROS</TITLE>
    </HEAD>
    <BODY bgcolor = "yellow" link = "Black" vlink = "Green">
        <FONT color = "Maroon">
        <H1><CENTER>INDIAN RHINOCEROS</CENTER></H1>
        </FONT>
        <IMG src = "mainrhino.jpg" alt = "rhino" align = "right">
        <P>
        The Indian Rhinoceros lives primarily in northern India and Nepal. These massive beasts have some noticeable physical differences from their African relatives. Their segmented body looks like a formidable coat of natural body armour. It functions like one also. Flexible skin between the thicker hide "plates" allows them to shift as the rhinoceros moves. 
        </P>
        Other Endangered Animals:<BR>
        <UL type = "disc">
            <LI><A HREF = "WHOOPING_CRANE.HTML"><U>Whooping Crane</U></A></LI>
            <LI><A HREF = "WHITE_RHINO.HTML"><U>White Rhino</U></A></LI>
            <LI><A HREF = "SUMATRAN_RHINO.HTML"><U>Sumatran Rhino</U></A></LI>
            <LI><A HREF = "TOUCAN.HTML"><U>Toucan</U></A></LI>
        </UL>
        <CENTER>Fast Facts</CENTER>
        <TABLE border = "2" align = "center">
            <TR>
                <TD>Type</TD>
                <TD>Mammal</TD>
            </TR>
            <TR>
                <TD>Diet</TD>
                <TD>Herbivore</TD>
            </TR>
            <TR>
                <TD>Average life span in the wild</TD>
                <TD>40 years</TD>
            </TR>
            <TR>
                <TD>Size</TD>
                <TD>Length 12.5 ft, Height upto 6 ft</TD>
            </TR>
            <TR>
                <TD>Weight</TD>
                <TD>4, 400 lbs(2,000 kg)</TD>
            </TR>
        </TABLE>
        <A href = "details.html">For more details</A>
    </BODY>
</HTML>

Answered By

1 Like


Related Questions