Tag Archives: html

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 »

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 »