|
Tutorials: Basic HTML Tags and Attributes
META Tag
Information to get your page properly indexed on a search engine goes between this tag. Furthermore, this information will not get your page ranked higher in the search engines as some people think. It is broken down into two parts: the DESCRIPTION and KEYWORDS. Here is an example of it's use in a basic page below.
<HTML>
<HEAD>
<TITLE> How to use the META tag! </TITLE>
<meta name="Description" CONTENT="Description of your page goes here!">
<meta name="KeyWords" CONTENT="Keywords that describe your page go here!">
</HEAD>
<BODY>
No one will see the information in your META tag unless they view your source because it is used to help Search Engines Index Your Site!
</BODY>
</HTML>
|
[Return to HTML Tutorials]
|