|
|
Member Since: Apr 07, 2007
Location: London, UK
Posts: 71
Mac Specs: Powermac G4/450 OSX 10.4.11
|

04-07-2007, 04:06 PM
Just to be a nitpick, you should have a doctype declaration in your html
Other than that, your site meets W3C validation
The site looks good, clean, and simple. Nice rollover buttons, and loads quickly.
You might want to do a contact form rather than leaving a direct email address to prevent spam, or you could use a javascript like I use (have done the changes for your hitecconsulting site:
Code:
<script language='JavaScript' type='text/javascript'>
<!--
var prefix = 'ma' + 'il' + 'to';
var path = 'hr' + 'ef' + '=';
var addy = 'Info' + '@' + 'hitecconsulting.com';
document.write( '<a ' + path + '\'' + prefix + ':' + addy + '\'>' + addy + '</a>' );
//-->
</script>
Simply put this script where your current email address link is and you should protect them from a bit more spam
|
|
|
QUOTE
Thanks
|