Tag Archives: page

HTML22 Design an HTML Page for the “Block Introduction” of this book.

Design an HTML Page for the “Block Introduction” of this book: The page should allow scrolling and the code should contain a comment header with your name and enrolment number. Design an HTML Page for the “Block Introduction” of this book: The page should allow scrolling and the code should contain a comment header with… Read More »

HTML20 Design an HTML Page having 3 images placed in the following format

Design an HTML Page having 3 images placed in the following format.   Let us take a look at the syntax of the <IMG> tag: <IMG SRC = “FILENAME.GIF” WIDTH = “value” HEIGHT = “value” ALT = “alternate text” BORDER = “value” ALIGN = “value”> SRC: This attribute specifies the pathname to the source file… Read More »

HTML12 Write HTML code to create a Web page of pink colour and display a moving message in red colour.

Write HTML code to create a Web page of pink colour and display a moving message in red colour.   Write HTML code to create a Web page of pink colour and display a moving message in red colour.   Html code: [codesyntax lang=”html4strict”] <!DOCTYPE html> <HTML> <HEAD> <TITLE>CSSimplified.com HTML12</TITLE> </HEAD> <BODY BGCOLOR=”pink”> <MARQUEE> <FONT… Read More »

HTML10 Create a Web page using href attribute of anchor tag & the attribute: alink, vlink etc.

Create a Web page using href attribute of anchor tag & the attribute: alink, vlink etc.   The BODY tag has following attributes: BGCOLOUR: It can be used for changing the background colour of the page. By default the background colour is white. BACKGROUND: It is used for specifying the image to be displayed in… Read More »

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 »

HTML07 Write an HTML code to create a Web page of blue color and display links in red colour.

Write an HTML code to create a Web page of blue color and display links in red colour. Write an HTML code to create a Web page of blue color and display links in red colour. Html code: [codesyntax lang=”html4strict”] <!DOCTYPE html> <HTML> <HEAD> <TITLE>CSSimplified.com HTML7</TITLE> </HEAD> <BODY BGCOLOR=”blue” TEXT=”red”> <P ALIGN=”center”><FONT FACE=”verdana” COLOR=”white” SIZE=”5″><B>CSSimplified.com… Read More »

HTML06 Design a page having background colour yellow, giving text colour red and using all the attributes of font tab.

Design a page having background colour yellow, giving text colour red and using all the attributes of font tab.   Design a page having background colour yellow, giving text colour red and using all the attributes of font tab. Html code: [codesyntax lang=”html4strict”] <!DOCTYPE html> <HTML> <HEAD> <TITLE>CSSimplified.com HTML5</TITLE> </HEAD> <BODY> <FONT><B>CSSimplified.com</B></FONT> <P><FONT><I>CSSimplified.com</I></FONT> </P> <P><FONT><U>CSSimplified.com</U></FONT>… Read More »