Quote:
Originally Posted by DezineJunkie
I am an experienced designer and an unexp. web coder. i do understand tableless coding and the reason for it. Would you mind posting some code to show the abover Header H1 keywords adn footer- just an example for us newbies.
Also ive only found 1 template that was all CSS- do you know of any more?
|
Here is nice CSS layout builder tool that allows you easily build CSS layout:
http://developer.yahoo.com/yui/grids/builder/
For SEO emphasize on tags use tags without referencing to CSS code.
For example use
Code:
<h1>text text text</h1>
instead of
Code:
<h1 class="stylename">text text text</h1>
You should configure your tags via CSS:
Code:
h1 { display: inline; text-size:2.5em; color:black;}
or if you would like to have only certain h1 use one of the following constructions:
for all h1 nested inside td tags
Code:
<td><h1>text text text</h1></td>
or for all h1 nested in
Code:
<div id="stylename"><h1>text text text</h1></div>
Code:
#stylename h1 {....}
Ofcourse all the style must be configured as per your sites styling. Here is some information on CSS specifications:
http://www.w3.org/TR/CSS21/
Hope that helps