meta tags

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to put some meta tags onto my web pages as I am not very high iup in
the rankings and think that this may help (will it as I do belienve spiders
go through all the pages now?) However I am not sure where to put them as I
have a dwt as a menu which runs across all my pages - below is the code at
the start of my home page - do I put the mega tags between <title>Livigno -
Mountain Tours Ltd</title>
and <!-- #EndEditable --> ?
thanks
Jacquie CC www.mountain-toursltd.com


<html>

<!-- #BeginTemplate "header.dwt" -->

<head>
<!-- #BeginEditable "doctitle" -->
<title>Livigno - Mountain Tours Ltd</title>
<!-- #EndEditable -->
 
In your DWT add an editable region for the meta tags

<!-- #BeginEditable "doctitle" -->
<title>Livigno - Mountain Tours Ltd</title>
<!-- #EndEditable -->
<!-- #BeginEditable "keywords" -->
<meta name="keywords" content=" ">
<!-- #EndEditable -->
<!-- #BeginEditable "description" -->
<meta name="description" content=" ">
<!-- #EndEditable -->


Or just insert them in code view in the existing editable region
<head>
<!-- #BeginEditable "doctitle" -->
<title>Livigno - Mountain Tours Ltd</title>
<meta name="keywords" content=" ">
<meta name="description" content=" ">
<!-- #EndEditable -->


--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


|I want to put some meta tags onto my web pages as I am not very high iup in
| the rankings and think that this may help (will it as I do belienve spiders
| go through all the pages now?) However I am not sure where to put them as I
| have a dwt as a menu which runs across all my pages - below is the code at
| the start of my home page - do I put the mega tags between <title>Livigno -
| Mountain Tours Ltd</title>
| and <!-- #EndEditable --> ?
| thanks
| Jacquie CC www.mountain-toursltd.com
|
|
| <html>
|
| <!-- #BeginTemplate "header.dwt" -->
|
| <head>
| <!-- #BeginEditable "doctitle" -->
| <title>Livigno - Mountain Tours Ltd</title>
| <!-- #EndEditable -->
|
 
And forget the keywords tag since the major search engines ignore them. The
content on the page itself is the primary determinant of your keyword list,
and if those derived keywords appear in your page title, your page header
tags, your page linked filenames, and your alt attributes, you will get a
good ranking. Keyword metas have no impact....
 
Back
Top