CBSE Class 10 Computer Applications Question 28 of 31

Solved Sample Paper 3 — 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 the given specifications.

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

(i) Title of the page is "People's Public School".

(ii) Link color is "Fuchsia".

(iii) Font face for the page is "Calibri".

(iv) The color of heading of the page is "Red".

(v) Image used as school.jpg.

Answer
<HTML>
    <HEAD>
        <TITLE> People's Public School </TITLE>
    </HEAD>
    <BODY LINK = "fushia">
        <FONT FACE = "CALIBRI"> 
        <FONT COLOR = "RED">
        <CENTER>
        <H1> WELCOME <BR> To <BR> PEOPLE'S PUBLIC SCHOOL </H1>
        </FONT>
        <IMG SRC = "SCHOOL.JPG" ALT = "Image of school">
        </CENTER>
        <P>
        Welcome to <I>People's Public School</I>. We are strongly committed
        to the success of our students. Commonly requested information has
        been digitized and made available on our site. We encourage your
        feedback as we strive to improve our school. 
        </P>
        </FONT>
    </BODY>
</HTML>