Turn me into Green Eggs

bret

New Member
Review my GREEN site please. I'm looking for any and all feedback. I am particularly concerned that the font is readable but doesn't stand out too much.

Also, what do you think of the background image on the main and contact page?

http://www.nettleteadesign.com

Thanks in advance,

Bret
 

Ennesus

New Member
I just look at your website, the html markup is just not symantic,
you use div tag for each menu item consider to use a unordered list
as example:

<ul id='menu'>
<li><a href='#'>Home</a></li>
<li><a href='#'>about</a></li>
<li><a href='#'>contact</a></li>
</ul>

all the images in your portfolio are wrapped in divs, this is not the correct way to write html.

Also in the blog the titles are wrapped into a div there you got to use h1 tags.
 

bret

New Member
I checked the HTML with the w3 Validator and it came out a near-perfect score, so I'm not sure what you mean by saying the html is not correct.

Are you familiar with CSS? In using CSS I believe the rules are a bit different.

Does anyone else want to give their opinion on this?

bret
 

Ennesus

New Member
I checked the HTML with the w3 Validator and it came out a near-perfect score, so I'm not sure what you mean by saying the html is not correct.

Are you familiar with CSS? In using CSS I believe the rules are a bit different.

Does anyone else want to give their opinion on this?

bret

I am familiar with Css and with writing semantic xhtml code,
semantic means that you write xhtml the way it is designed,
as example if you got a title you can write it down as
<p> Some title <p> and style it as a title, but on the semantic way
you got to use <h1> tags

I have Googled a article maybe it makes u understand what i am saying

http://brainstormsandraves.com/articles/semantics/structure/
 
Top