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

HTML Intro

6 Likes

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>

Answered By

3 Likes


Related Questions