Tag Archives: image

HTML09 Create a Web page with appropriate content and insert an image towards the left hand side of the page. When user clicks on the image, it should open another Web page

Create a Web page with appropriate content and insert an image towards the left hand side of the page. When user clicks on the image, it should open another Web page.   Let us take a look at the syntax of the <IMG> tag: <IMG SRC = “FILENAME.GIF” WIDTH = “value” HEIGHT = “value” ALT… Read More »

HTML08 Write an HTML code to create a Web page that contains an image at its center.

Write an HTML code to create a Web page that contains an image at its center.   Write an HTML code to create a Web page that contains an image at its center. Html code: [codesyntax lang=”html4strict”] <!DOCTYPE html> <HTML> <HEAD> <TITLE>CSSimplified.com HTML8</TITLE> </HEAD> <BODY> <P ALIGN=”center”><IMG BORDER=”0″ WIDTH=”600″ HEIGHT=”200″ SRC=”logo.jpg”</P> </BODY> </HTML> [/codesyntax] Write… Read More »