| Hypertext Markup Language is one of the computer languages, is in use far and wide in the world. Owing to the Coding Technology which helps in publishing the content on the Internet, HTML has gain the field in the area of popularity & importance. HTML give-out the instructions to a web browser regarding the displaying of a web page. The HTML title tag encloses the textual information which are placed on the top blue bar on a standard web browser.
The first tag in any HTML file is the <HTML> tag. This informs the web browsers that the document is of a HTML file. The second tag is a <HEAD> tag. Information between the HEAD tags does not come into view in the browser window, but it is yet very important. It is called Meta information. The most important Meta information in the HEAD tag is the <TITLE> tag. To sum up, apt use of a HTML title tag is a vital element of a basic SEO.
The basic frame of every web page should look like this:
<HTML>
<HEAD>
<TITLE>
</TITLE>
</HEAD>
<BODY>
</BODY>
</HTML>
The most important tags in HTML are tags that classify headings, Paragraphs, Line Breaks and Horizontal Rule.
Headings: Heading Tag facilitates in creating the Titles as well as Section Headings. Headings are defined with the <h1> to <h6> tags. <h1> defines the largest heading whereas <h6> defines the smallest heading. HTML automatically adds an extra blank line before and after a heading.
H1, H2, H3, H4, H5, and H6 are the ingredients of a "Heading". The H1 element is the most important heading. H2, H3 ... H6 can then be used as a subheading. Nearly all web browsers display their headings in bold text, and display H1 at a large text size, H2 at a slightly smaller text size, and so on.
Paragraphs: Paragraphs are defined with the <p> tag so as to show that section of a text is a paragraph. On the way to separate paragraph from the other paragraph, most web browsers are placing an extra "blank line" before and after the paragraph. It can also be done through a Style Sheet.
Line Breaks: The BR element introduces a "line break" in the text. The <br> tag is taken into a use when you have to end a line and don't want to start a new paragraph. The <br> tag forces a “line break” wherever you place it. The <br> tag is an empty tag. This is to say that, it has no closing tag. And so, for this reason, this tag is good for passing-over a line quickly and for knowing where you wanted a new paragraph to begin.
Horizontal Rule: The HR element inserts a "horizontal rule" on your page so that the content can be separated. Thus, by placing the <HR> tag, you can make a line to occur wherever you want. Most web browsers also put space before and after the rule. The HR element has several deprecated attributes that makes the width, height, color, and look of the horizontal rule to change. These can also be accomplished by means of a style sheet. |