|
Hay buddy a few things ~
This can be removed ~
<meta name="ROBOTS" content="INDEX,FOLLOW" />
Because that is what search engines do, unless you tell them otherwise, so is a pointless piece of code.
The keywords meta again can be removed as it is not even indexed.
Your menu should be in a list form, it would reduce your code bloat and be semantically correct as it is a list of links.
This ~
<div id="banner"><img src="http://www.designforums.co.uk/images/home.jpg" alt="The Cutting Room Flyer" /></div>
Can be reduced to ~
<img id="banner" src="http://www.designforums.co.uk/images/home.jpg" alt="The Cutting Room Flyer" />
So again reduces your bloat.
hello should start with a capitol as it is a beginning of a sentence.
This whole section can be changed from ~
<div id="hometext">
hello, welcome to my online website which showcases examples of my work within<br />the <h2>web</h2> & <h2>graphic</h2> design field
</div>
to ~
<div id="hometext">
Hello, welcome to my website which
showcases examples of my work within
the <strong>web</strong> & <strong>graphic</strong> design field
</div>
Then give hometext a rule of
#hometext{white-space: pre}
As that will reduce the br tag, change the h2 tags which are heading tags to the correct strong tag which makes it semantically correct.
Your home link shouldn't be active on your home page, leads to confusion to what page they are on.
Create a plain file call it .htaccess and place this code in it ~
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.mikeinghamdesign\.com/ [nc]
RewriteRule ^(.*)$ http://www.mikeinghamdesign.com/$1 [R=301,L]
What this will do is redirect your www. and non www. versions to the www. version.
This in the search engines eyes makes the site 1 site, other wise it is classed as 2 and you will be penalized as a result.
Upload that file to your root directory.
Design wise, simple but I really like it.
Hope it helps
Jaz
Last edited by Jazajay; 15-01-09 at 06:32 PM.
|