Headings

M

Mary Ann

Using other sites to help optimize the sites I maintain, whenever I run a
report it always says I have no <H1> headings. What does that mean? I checked
source on other sites that come up first page in search engines and I don't
see <H1> anywhere.
 
J

Jens Peter Karlsen [FP-MVP]

You will see it as a warning when you use <h2-6> without having a
<h1>.
Headings should be properly nested starting with <h1>.

Simple example:

<h1>Examples about using headings</h1>
<h2>Example 1</h2>
<p>some content</p>
<h2>Example 2</h2>
<p>some more content</p>
<h3>example 2.1</h3>
<p>some content that relates to the above h2</p>
<h2>example 3</h2>
<p>last example</p>
<h1>Next topic</h1>

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
D

David Berry

Type some text on your page, highlight it and in the style box (next to the
font drop down) choose Heading. Then switch to Code View and you'll see it
added <h1>your text</h1> In Coe View you can scroll down and look for any
<h 1-6> tags in your code. If you see them you can remove them
 
Top