HTML15 Create a web page, showing an unordered list of names of five of your friends

Create a web page, showing an unordered list of names of five of your friends.   Unordered Lists First, we will build an unordered list. Sometimes, these lists are also called bulleted lists. These lists are characterized by list items that do not have numbers. They are used when the points in the list have… 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 »