Forum Moderators: open
i know where the 'title', 'description', 'key words' are...and see 'head', 'body', etc.
perhaps it right in front of me...but i must be missing it.
thanks
BTW - is the H1, etc tags seen on my 'normal' page view or just in the HTML?
yeah, i've only been responsible for creating visually 'pretty' websites for our small business...now i was given the task of making sure the html, seo stuff, etc is in place (we only have two employees...me and hubby...and because hubby doesn't want to do it, that leaves me :o(
because i am starting at this point (after the website was designed), i am feeling a bit overwhelmed with the html (since i never looked at it during the website building process...no, i am no expert by any means...just trying to save some money doing this ourselves until we get big and make some $$$)
The heading tags are really simple. You basically just wrap your page title with a nice keyword or two in between the <H1>header 1 tag</H1>. Make sure you don't keyword stuff-it and that you add it AFTER your </head> and <body> tags.
Nowadays you are far better off to make sure that each piece of content is a heading, paragraph, list, or table (if it really is tabular data) and marked up as such. Each of those can be styled with some very simple CSS in a separate style file.
That takes care of the structure of the information on the page. To visually lay it out, many people use div to create boxes, but some still stick with tables. I use a mixture of both, as needed.
I never use font or br tags, and I make sure that every piece of content in to be found in a container of hn, p, li, or td.
title = h1
I. = h2
a. = h3
II. = h2
a. = h3
1. = h4
These elements can by styled via css anyway you like.
is the H1 (title) suppose to include some of your keywords and then name of your business and is best to put it at the top (even about the logo that spans the entire width of the top of the website)?
so the H1 would look like ' X Y Z ¦ Name of business' (X Y Z being place holders for my keywords)
i think the whole thing (H1, H2, etc) makes sense, but when i go back to each page to look at the H1, H2 i am getting all confused (the site has approx 60 pages). For example one part of my business (5 rental cabins - hope i can use that...didn't know if i should just say 'X Y Z' again) are all similar 'lakeside rental cabins', but they each have their own cabin name (and page) - so is it okay to have identical H1's on those 5 pages and then the H2's would be the cabin names (with their pictures and amentities)
lots of questions i know...just trying to figure this all out.
thanks
The W3C HTML Validator has an option to show an outline of the document. That outline is generated only from the heading tags on the page. It is a useful indicator as to how well the headings convey what the page is all about.