-
What are the entities in HTML?
The HTML character entities are used as a replacement for reserved characters in HTML. You can also replace characters that are not present on your keyboard by entities. These characters are replaced because some characters are reserved in HTML.
-
What is the use of an iframe tag?
An iframe is used to display a web page within a web page. Syntax: Example: Target to a link:
-
What is the use of a span tag? Give one example.
The span tag is used for following things: Example:
-
What are empty elements?
HTML elements with no content are called empty elements. For example: <br>, <hr> etc.
-
How to make a picture of a background image of a web page?
To make a picture a background image on a web page, you should put the following tag code after the </head> tag. Here, replace the “image.gif” with the name of your image file which you want to display on your web page.
-
How many tags can be used to separate a section of texts?
Three tags are used to separate the texts.
-
What is a marquee?
Marquee is used to put the scrolling text on a web page. It scrolls the image or text up, down, left or right automatically. You should put the text which you want to scroll within the <marquee>……</marquee> tag.
-
Explain the layout of HTML?
HTML layout specifies a way in which the web page is arranged. Every website has a specific layout to display content in a specific manner. Following are different HTML5 elements which are used to define the different parts of a webpage.
-
Is it possible to change the color of the bullet?
The color of the bullet is always the color of the first text of the list. So, if you want to change the color of the bullet, you must change the color of the text.
-
Can you create a multi-colored text on a web page?
Yes. To create a multicolor text on a web page you can use <font color =”color”> </font> for the specific texts you want to color.
