Computer Applications

(a) Write the HTML code to display an inline image named pencil.jpg located at C:\ in the center of your Web page.

(b) Write the HTML command to display the A2 + B2 in your Web page.

(c) Write HTML code to insert an image named globe.jpg in the background of a Web page.

HTML Intro

1 Like

Answer

<HTML>
    <BODY BACKGROUND = "GLOBE.JPG">
    <CENTER>
    <IMG SRC = "C:\pencil.jpg" ALT = "PENCIL">
    </CENTER>
    <BR>
    A<SUP>2</SUP> + B<SUP>2</SUP>
    <BR>
    </BODY>
</HTML>

Answered By

1 Like


Related Questions