Introduction to Meta Tags :
Meta tags are used to inform about the page data in the back ground. These are not displayed on the page. They had played vital role in SEO in near past. They were considered the king of optimization. Search engines used the meta tags the to display the results. It was observed some time visitors were miss guided by stuffing the irrelevant data in these tags. By the time being the spiders algorithms became more powerful and prepare the search results after visiting the contents deeply (to ensure the quality of result ). They don't depend merely on meta tags. But it must be used and optimized. It will not be a wise step to ignore them. Why do e miss a chance to if it may be included in search results. If you are new to know the meta tags , you can visit how to add meta tags in web page html.
Alt Attribute and No Frame Tag :
As I mentioned in another topic that search engine crawlers depend upon text. They can see what is inside the images and frames. So any information on images and frames are skipped. I am not against the images. I suggest they should be properly optimized by alt attribute and no frames tag.
Now you may have a question "How to use alt attribute and no frames tag ?". It is easy to use.
The general code syntax of adding an image is as below.
After adding the alt attribute it should be replaced as being shown below.
Now I am showing how to use no frames tag. The general syntax example for frame tag is given here.
After adding the No frames tag the code will be in the form given below.
Meta tags are used to inform about the page data in the back ground. These are not displayed on the page. They had played vital role in SEO in near past. They were considered the king of optimization. Search engines used the meta tags the to display the results. It was observed some time visitors were miss guided by stuffing the irrelevant data in these tags. By the time being the spiders algorithms became more powerful and prepare the search results after visiting the contents deeply (to ensure the quality of result ). They don't depend merely on meta tags. But it must be used and optimized. It will not be a wise step to ignore them. Why do e miss a chance to if it may be included in search results. If you are new to know the meta tags , you can visit how to add meta tags in web page html.
Alt Attribute and No Frame Tag :
As I mentioned in another topic that search engine crawlers depend upon text. They can see what is inside the images and frames. So any information on images and frames are skipped. I am not against the images. I suggest they should be properly optimized by alt attribute and no frames tag.
Now you may have a question "How to use alt attribute and no frames tag ?". It is easy to use.
The general code syntax of adding an image is as below.
<img src="IMAGE SOURCE HERE">After adding the alt attribute it should be replaced as being shown below.
<img src="IMAGE SOURCE HERE" alt="ALT DESCRIPTION HERE">Now I am showing how to use no frames tag. The general syntax example for frame tag is given here.
<frameset>
<frame src="FRAME SOURCE HERE" />
</frameset>After adding the No frames tag the code will be in the form given below.
<frameset>
<frame src="FRAME SOURCE HERE" />
<noframes>
NO FRAMES DESCRIPTION HERE
</noframes>
</frameset>