HTML Citation Tag or Title of work Tag

<cite>    
  • HTML Cite Tag.
  • It is formatting HTML tags for the web page.
  • It defines the title of a work.

HTML Centered Text Tag

<center>    

HTML Code Tag

<code>    
  • HTML Code Tag. .
  • It is formatting HTML tags for the web page.
  • It defines the computer code

HTML Delete Tag

<del>    
  • HTML Del Tag.
  • It is formatting HTML tags for the web page.
  • It defines the text that has been deleted from web page.

HTML Definition Tag

<dfn>    
  • HTML dfn Tag.
  • It is formatting HTML tags for the web page.
  • It describes the definition phrase.

HTML Emphasized Text Tag

<em>    
  • HTML em Tag.
  • It is formatting HTML tags for the web page.
  • It uses to emphasize, highlight the text on web page.

HTML Font Tag

<font>    
  • HTML Font Tag.
  • It is formatting HTML tags for the web page.
  • It defines the font family, font style, font color, font size, font weight, font variant for the text in web page.
  • Not supported for HTML5.

HTML Italic Text Tag

<i>    
  • HTML i Tag.
  • It is formatting HTML tags for the web page.
  • It displays the text in italic style.

HTML Insert Text Tag

<ins>    
  • HTML ins Tag.
  • It is formatting HTML tags for the web page.
  • It defines text that has been inserted into a web page.

HTML Keyboard Input Tag

<kbd>    

HTML Mark Tag

<mark>    
  • HTML mark Tag.
  • It is formatting HTML tags for the web page.
  • It defines marked and highlighted text.

HTML Meter Tag

<meter>    
  • HTML Meter Tag.
  • It is formatting HTML tags for the web page.
  • It defines scalar measurement within a known range.

HTML Preformatted Tag

<pre>    
  • HTML pre Tag.
  • It is formatting HTML tags for the web page.
  • It defines the preformatted text.

HTML Progress Tag

<progress>    
  • HTML Progress Tag.
  • It is formatting HTML tags for the web page.
  • It defines the progress of a job / assignment.

HTML rp Tag

<rp>    
  • HTML rp Tag.
  • It is formatting HTML tags for the web page.
  • It defines what to show if a browser does not support ruby annotations.

HTML rt Tag

<rt>    
  • HTML rt Tag.
  • It is formatting HTML tags for the web page.
  • It defines the clarification and pronunciation of characters for East Asian font.

HTML Ruby Tag

<ruby>    
  • HTML Ruby Tag.
  • It is formatting HTML tags for the web page.
  • It defines a ruby annotation for East Asian font.

HTML Strike Text Tag

<s>    

HTML Sample Output Tag

<samp>    
  • HTML samp Tag.
  • It is formatting HTML tags for the web page.
  • It defines sample output from the computer program.

HTML Small Text Tag

<small>    

HTML Strikethrough Text Tag

<strike>    
  • HTML strike Tag.
  • It is formatting HTML tags for the web page.
  • It defines strike-through text. The text in not applicable now.
  • Not supported in HTML5.

HTML Strong Text Tag

<strong>    
  • HTML strong Tag.
  • It is formatting HTML tags for the web page.
  • It defines important text. Display the text in Bold font.

HTML Subscription Text Tag

<sub>    
  • HTML sub Tag.
  • It is formatting HTML tags for the web page.
  • It defines sub-scripted text.

HTML Superscripted Tag

<sup>    

HTML Time Tag

<time>    
  • HTML time Tag.
  • It is formatting HTML tags for the web page.
  • It defines the date / time.

HTML Tele Type Text Tag

<tt>    
  • HTML tt Tag.
  • It is formatting HTML tags for the web page.
  • It defines teletype text.
  • Not supported in HTML5.

HTML Variable Tag

<var>    
  • HTML var Tag.
  • It is formatting HTML tags for the web page.
  • It defines the variable.

HTML Word Break Opportunity Tag

<wbr>    
  • HTML wbr Tag.
  • It is formatting HTML tags for the web page.
  • It defines if a word in the web page is too long and browser will break text lines at the wrong place, then this tag use to define possible and suitable point of line-break to web browsers.

HTML Underline Text Tag

<u>    
  • HTML u Tag.
  • It is formatting HTML tags for the web page.
  • It defines the text that is different from normal text. Its underline.

HTML Block quote Tag

<blockquote>    
  • HTML Blockquotes Tag.
  • It is formatting HTML tags for the web page.
  • It defines a section that is quoted from another source.

HTML Big Text Tag

<big>    
  • HTML Big Tag.
  • It is formatting HTML tags for the web page.
  • It defines big text in web page.
  • Not supported for HTML5.

HTML Override Tag

<bdo>    
  • HTML bdo Tag.
  • It is formatting HTML tags for the web page.
  • It uses to override the existing text direction.

HTML bdi Tag

<bdi>    
  • HTML bdi Tag.
  • It is formatting HTML tags for the web page.
  • It segregates a part of text that might be formatted in an unusual way from other text.

HTML Bold Tag

<b>    
  • HTML b Tag.
  • It is formatting HTML tags for the web page.
  • It defines bold text in web page.

HTML Address Tag

<address>    
  • HTML Address Tag.
  • It is formatting HTML tags for the web page.
  • It defines the contact data and information about the author of website, web document.

HTML Abbreviation Tag

<abbr>    
  • HTML Abbr Tag.
  • It is formatting HTML tags for the web page.
  • It defines an abbreviation.

HTML Acronym Tag

<acronym>    
  • HTML Acronym Tag.
  • It is formatting HTML tags for the web page.
  • It defines the acronym.
  • Not supported for HTML5.

HTML Title Tag

<title>    
  • HTML Title Tag.
  • This is basic HTML tag
  • Apply to describe the Title for web page

HTML Body Tag

<body>    
  • HTML Boby Tag
  • This is basic HTML tag
  • Apply to define the web page body data

How to Use the HTML Meta Keywords Tag

<meta name="keywords" content=" ">
What is the Meta keyword Tag? Meta keyword Tag is a group of keywords relevant to content of webpage/ website. In ‘content’ part of meta keyword tag website developer fill out more than one related keywords. But don't add too many words because most search engines only index first 20 words. Most important point is to put the 10 most significant, related keywords first.
This tag is so important because when visitors search any related keywords or phrases then search engines (Google, Yahoo and Bing) give value to website and rank website in search result.
On other hand one view is that the meta keywords tag is not helpful in ranking the websites. But if more people will click on your listing and that will give you a better CTR. CTR is one of the important things for your ranking.

 

Where should add meta Keywords tag?

Meta keyword tag is placed in Head portion of HTML document / web page. Between head tags <head> and </head>.
<html>
<head>
<title></title>
<meta name="keywords" content="text">
</head>
<body></body
</html>

 

Meta Keywords Tag Example

This is meta Keywords tag use in HTML source of following webpage:

Example of a meta keywords tag of webindata
<meta name='keywords'  content=' web data, html tags, SEO'>

(A) Keyword for web search
(B) Keyword found in the title tag
(C) Keyword found in the description.

Optimize each page of website with respect to content related keywords. Include most important keyword phrases that are related to the content of specific webpage.

Text Line Break Tag

<br>    
  • Data/Text Line Break Tag
  • This is basic HTML tag
  • This tag use to break the data/text line and start new line in the web page

How to Use the HTML Meta Description Tag

<meta name="description" content=" ">
What is the Meta Description Tag? Meta Description Tag is a short but to the point short story of the data of webpage/ website. In ‘content’ part of meta description tag website developer explain the website / web page in 2 to 3 sentences or up to 200 characters.  
This summary should be relevant to web page / website. This tag is so important because when visitors search for related phrases then search engines (Google, Yahoo and Bing) display the description information in the result of search result.

 

Where should Add Meta Description Tag?

Meta description tag is placed in Head portion of HTML document / web page. Between head tags <head> and </head>.
<html>
<head>
<title></title>
<meta name="description" content=" ">
</head>
<body></body
</html>

 

Meta Tag Description Example

This is meta description tag use in HTML source of following webpage:

<meta name="description" content=" Web also known as World Wide Web. Web is a system that provides access to internet services. For this access there are numbers of application and web browsers.">

(A) Keyword for web search
(B) Keyword found in the title tag
(C) Keyword found in the meta description tag.

Example of a meta description tag of webindata

It is important to use content related keywords in meta description tag, so that website found under those keywords. When a search engine spider locates a certain keyword on website and in meta description tags, it values that this word is vital and used as keyword. At the end result website will be positioned higher in the search index.
Each page of website must have relevant title, relevant meta description and content related keywords. Include all keywords and phrases that are related to the content of specific webpage. It is a tough job but it’s so important for each webpage/ website.

How to Increase and Get High Page Rank (PR)

Website or web page need ‘on page’ and ‘off page’ optimization for success. A website need following steps to get first page position in any search engines and also to increase / to get higher Page Rank (PR). For success of any website improve the following steps.
  • Preparations for website
  • Optimize website domain name
  • Optimize website structure and layout
  • Optimize each web page of website
  • Create valid and unique content
  • Optimize Internal and external links
  • Get website index soon
  • Observe Statistics of website
  • Give easy access to spiders and robots
  • Keep website up-to-date. Preferably daily
  • Submit website to relative content website
  • Use social media promotion
  • Think about future targets

HTML Paragraph Tags

<p>    
  • Paragraph Tag
  • This is basic HTML tag
  • This tag use to start new paragraph in a web page