please send important question of chapter introduction to HTML
Answers
HTML stands for Hyper Text Markup Language. It is a language of World Wide Web. It is a standard text formatting language which is used to create and display pages on the Web. More details...
2) What are Tags?HTML tags are composed of three things: opening tag, content and ending tag. Some tags are unclosed tags.
HTML documents are made of two things:
content, andtagsContent is placed between tags to display data on the web page. More details...
3) Do all HTML tags have end tag?No. There are some HTML tags that don't need a closing tag. For example: <image> tag, <br> tag. More details...
4) What are some common lists that are used when designing a page?There are many common lists which are used to design a page. You can choose any or a combination of the following list types:
Ordered listUnordered listMenu listDirectory listDefinition listMore details...5) What is the difference between HTML elements and tags?HTML elements communicate to the browser to render text. When the elements are surrounded by brackets <>, they form HTML tags. Most of the time, tags come in pair and surround content.
6) What is semantic HTML?Semantic HTML is a coding style. It is the use of HTML markup to reinforce the semantics or meaning of the content. For example: In semantic HTML <b> </b> tag is not used for bold statement as well as <i> </i> tag is used for italic. Instead of these we use <strong></strong> and <em></em> tags.
7) What is image map?Image map facilitates you link many different web pages using a single image. You can define shapes in images that you want to make part of an image mapping.
8) How to insert a copyright symbol on a browser page?can insert a copyright symbol by using © or © in an HTML file.
9) How do you keep list elements straight in an HTML file?You can keep the list elements straight by using indents.
10) Does a hyperlink only apply to text?No, you can use hyperlinks on text and images both. More details...
11) What is a style sheet?A style sheet is used to build a consistent, transportable, and well designed style template. You can add these templates on several different web pages.
12) 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.
13) 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.
14) What is a marquee?Marquee is used to put the scrolling text on a web page. You should put the text which you want to scroll within the <marquee>......</marquee> tag. More details...
15) How many tags can be used to separate section of texts?There are three tags used to separate the texts. i.e. usually <br> tag is used to separate line of texts. Other tags are<p> tag and <blockquote> tag.
16) How to make a picture 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.
<body background = "image.gif">Here, replace the "image.gif" with the name of your image file which you want to display on your web page.
17) What are empty elements?HTML elements with no content are called empty elements. For example: <br>, <hr> etc.
18) What is the use of span tag? Give one example.The span tag is used for following things:
For adding color on textFor adding background on textHighlight any color text etc.Example:
<p> <span style="color:#ffffff;"> In this page we use span. </span> </p> 19) What is the use of iframe tag?An iframe is used to display a web page within a web page.
Syntax:
<iframe src="URL"></iframe>Example:
<iframe src="demo_iframe.html" width="200px" height="200px"></iframe>Target to a link:
<iframe src="http://www.javatpoint.com" name="iframe_a"></iframe>