CBSE Class 10 Computer Applications Question 28 of 31

Solved Sample Paper 2 — 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) Background color of page is yellow.

(ii) Font style for the page is arial.

(iii) Image used is gov.jpeg.

(iv) Text color of the paragraph is red.

(v) E-mail id for bottom message is abc@xyz.com.

Answer
<HTML>
    <HEAD>
        <TITLE>
            National e-Governance Plan
        </TITLE>
    </HEAD>
    <BODY bgcolor = "yellow">
        <BASEFONT face = "arial">
        <CENTER>
        <H1> National e-Governance Plan </H1>
        </CENTER>
        <HR>
        <P> 
        <FONT color = "red">
        <IMG src = "gov.jpeg" alt = "gov" align = "right">
        The National E-Governance Plan of Indian Government seeks to lay the foundation
        and provide the impetus for long-term growth of E-Governance within the country.
        The plan seeks to create the right governance and institutional mechanisms,
        set up the core infrastructure and policies and implementation of 
        a number of Mission Moda Projects at the center, state and integrated service levels 
        to create a citizen-centric and business-centric 
        environment for governance.
        </FONT>
        </P>
        <B> Visit 
        <A href = "nation.html"> National e-Governance Plan </A> to know more about: <BR><BR>
        <OL type = "1">
            <LI>Central MMP's</LI>
            <LI>Implementation</LI>
            <LI>Components</LI>
        </OL>
        </B>
        <HR>
        <CENTER>For enquires
        <A href = "mailto:abc@xyz.com"> Mail to us </A>
        </CENTER>
    </BODY>
</HTML>