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 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) Link color is black, background color is yellow and visited link color is green.

(ii) Image used is "Computer.jpg".

(iii) Caption of table is blue.

(iv) Table border is blue and of size 2. Showcasing the advantages of computers.

(v) The 4 links are monitor.html, system.html, mouse.html and keyboard.html.

HTML Advanced Features

2 Likes

Answer

<HTML>
    <HEAD>
        <TITLE>
            COMPUTER
        </TITLE>
    </HEAD>
    <BODY bgcolor = "yellow" link = "black" vlink = "green">
        <H1 align = "center"><U> COMPUTER </U></H1>
        <P align = "left">
        A computer is a machine that can be programmed to carry out sequences of arithmetic or logical operations automatically.
        <BR>
        Modern computers can perform generic sets of operations known as programs. 
        <BR> 
        These programs enable computers to perform a wide range of tasks.
        <BR>
        </P>
        <IMG src = "Computer.jpg" align = "right" height = "3OO" width = "3OO">
        <P>
        Parts of a Computer:
        <UL type = "disc">
            <LI><A href = "monitor.html"> Monitor </A></LI>
            <LI><A href = "system.html"> System Cabinet</A></LI>
            <LI><A href = "mouse.html"> Mouse </A></LI>
            <LI><A href = "keyboard.html"> Keyboard</A></LI>
        </UL>
        </P>
        <TABLE bordercolor = "blue" align = "center" border = "2">
        <CAPTION>
        <B> Advantages of Computers </B>
        </CAPTION>
        <TR>
            <TD>1</TD>
            <TD>Multi-tasking</TD>
        </TR> 
        <TR>
            <TD>2</TD>
            <TD> High speed </TD>
        </TR>
        <TR>
            <TD>3</TD>
            <TD> Habitat Loss </TD>
        </TR>
        <TR>
            <TD>4</TD>
            <TD> Accuracy </TD>
        </TR>
        <TR>
            <TD>5</TD>
            <TD> Data security </TD>
        </TR>
        </TABLE>
        <CENTER>
        For further details
        <A href = "mailto:abc@xyz.com"> Contact Us</A>
        </CENTER>
    </BODY>
</HTML>

Answered By

3 Likes


Related Questions