CBSE Class 10 Computer Applications Question 11 of 12

Solved Sample Paper 4 — Question 1

Back to all questions
1
Question

Question 24(i)

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 "blue".

(ii) Font face of heading is "lucida handwriting".

(iii) The color of the heading of the page is "green".

(iv) The images used are "par.jpg" and "prog.jpg".

(v) Use link as "programming.html" for Programming.

Answer
<HTML>
    <HEAD>
    <TITLE></TITLE>
    </HEAD>
    <BODY link = "Blue">
        <IMG src = "Par.jpg" width = "170" height = "160" align = "left">
        <FONT face = "Lucida Handwriting" color = "Green"> <H1>Paradise Wheels Co.</H1>
        </FONT>
        <H3 align = "center">Because You're Worth It</H3>
        <P align = "right">
        <B>
        Home&ampnbsp&ampnbspAbout Us&ampnbsp&ampnbspServices&ampnbsp&ampnbspProducts&ampnbsp&ampnbspContact Us
        </B>
        </P>
        <HR>
        <P align = "right"><FONT face = "Lucida Handwriting">
        Our Services
        </FONT>
        <BR>
        <IMG src = "prog.jpg" width = "170" height = "160" align = "right">
        <BR>
        <A href = "programming.html">Programming</A>
        </P>
        <P>
        <B>Features of This Company</B>
        <UL>
            <LI>Good businesses need good plans.</LI>
            <LI>To be successful, a company must be motivated by something beyond financial success.</LI>
            <LI>To make their businesses successful, business owners need good attitudes.</LI>
            <LI>To be successful, businesses need to commit resources and time to training their employees,<br>as well any independent contractors with whom they work.</LI>
            <LI>Creating, enhancing and celebrating teamwork is at the heart of every successful company culture.</LI>
            <LI>Effective communication patterns within successful organizations have three main characteristics: clarity, courtesy and proactivity.</LI>
        </UL>
        </P>
    </BODY>
</HTML>