Topic: H1 Tags & Css

I am a procrastinator I know. A few months back I had asked about using H1 tags for SEO. Well I got frustrated and left it.
What I want to know is this. Can I go into the CSS style sheet and change the name of the title tag to H1. And then go into Dreamweaver and select H1 for the Title type or is there more to do than just that?

I hope you can understand what I am trying to say.

Thanks

Vote up Vote down

Re: H1 Tags & Css

The <h1> (and all the other Hs) tag needs to be in your HTML, then you use your CSS to style it.  Example

<h1>Main Title</h1>

<h2>Second Most Important Title</h2>

<h3> and so forth

Then in your CSS:

h1 {color: red;}
h2 {color: green;}
h3 {background: yellow;}

Just for example - of course when actually writing your CSS, don't use color names, use hex code.

Just because my computer is online does not mean that I am.
a&b WebDesign

Vote up Vote down

Re: H1 Tags & Css

Worked great thanks Andrea! big_smile  big_smile

Vote up Vote down

Re: H1 Tags & Css

Check the drop-down on the top right here - "Killersites Network" for great online Tutorials and Videos.  And there's also www.killersites.com/university

Just because my computer is online does not mean that I am.
a&b WebDesign

Vote up Vote down