Class 22 Notes

Using META tags

Some Things You Can Do With the META Element                       

How to use the <meta> element

<meta> tags are used in the page's heading

<meta> uses attributes like name and content

 

For example, to offer keywords to the search engine:

    <head>

       
<meta name="keywords" content="web page
         design,web design,web page construction,">


     
  <title>Class 21 Course Notes</title>
    </head>

 

To offer a description to use when your page is displayed:

    <head>

       
<meta name="description" content="This page
        contains lecture notes for CTT145 Web Page Design
        at Washington County Community College in Calais,
        Maine">


      
 <title>Class 21 Course Notes</title>
    </head>

 

Other information can be controlled as well - check out this page on the html goodies web site.