|
Posted by Beauregard T. Shagnasty on 02/11/06 18:27
canadafred wrote:
> "Beauregard T. Shagnasty" <a.nony.mous@example.invalid> wrote in message
> news:28rn40181ey7.yo54c4mee6c5.dlg@40tude.net...
> [snippage]
>> You forgot a DOCTYPE.
>
> Got that now thanks.
HTML 4.01 Strict should be used for new documents. Transitional is for
legacy pages.
http://www.w3.org/QA/2002/04/valid-dtd-list.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
>> Instead of:
>> <p align="left"> <snip>
>> ..use a list.
>
> This is tricky for me, we debated this in alt.internet.search.engines
> as far as SEO advantages. I made your suggested changes because this
> site I want to be more visitor friendly rather than SE friendly.
What is not SEO friendly about a list? Actually, I would think that a
list is better for SEO than a paragraph.
I see your list, but you have forgotten the <ul> element.
<td width="50%">
<ul> <----- this
<li>Understand then overtake keyphrase competitors.</li>
....
</ul> <----- and this
Just noticed this: it appears you are using <h1> solely for large bold
printing rather than for its true semantic use. Headings. You should
have just one <h1> per document, then use <h2>, <h3> etc for
sub-headings.
> Thanks alot! I really appreciate your comments.
You're welcome. How do you write your code? It looks so .. compressed
.... busy ... resembles the page itself, very busy and not too pleasant
to read. Needs a lot more white space.
--
-bts
-Warning: I brake for lawn deer
[Back to original message]
|