Tag Archives: Create

HTML17 Create a Web page, which should contain a table having two rows and two columns fill in some dummy data in the table created

Create a Web page, which should contain a table having two rows and two columns fill in some dummy data in the table created.   Table, TR and TD Tags Three tags form the essential ingredients for creating a table. TABLE: This is the main tag. It tells the browser that a table follows. It… Read More »

HTML16 Create a Web page, which should contain a table having two rows and two columns.

Create a Web page, which should contain a table having two rows and two columns.   Table, TR and TD Tags Three tags form the essential ingredients for creating a table. TABLE: This is the main tag. It tells the browser that a table follows. It has attributes like size and border width. TR: A… Read More »

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 »

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 »