key word pacement possible with FP?

D

David Baxter

Do you mean you want to add a keywords meta tag?

If so:

- load the page into FP
- right click anywhere and select "Page Properties"
- click on the "Custom" tab
- in the bottom panel, under "User Variables", click on "Add"
- in top row, for "Name" enter "keywords" (omit the quotation marks"
- in bottom row, enter your keywords separated by commas (e.g.,
keyword1, keyword2, keyword3, keyword4)

This will produce an html line like this:
<META NAME="keywords" CONTENT="keyword1, keyword phrase1, keyword2,
keyword3">

Follow a similar procedure to enter a description meta tag:
<META name="description" content="Brief descriptive sentence or phrases
including important keywords.">

....or, of course, you can create those tags directly by entering HTML
mode and placing them between the <HEAD> and </HEAD> tags at the top of
your page.
 
T

Thomas A. Rowe

Open you page in HTML View and insert your keywords in the head section of the page, like:

<title>Your Page Title</title>
<meta name="description" content="Should be specific to the page content">
<meta name="keywords" content="Should be specific to the page content">

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Top