Homepage, it might be inaccessible currently but I quite like it.
Here's a few things that'll improve it from an accessibility point of view:
Add a doctype, charset and lang:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Welcome to Bradley</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
Sorry that's in XHTML strict but you get the idea?
Add alt and title attributes to each of the map areas.
Code:
<img src="bradley.gif" width="750" height="450" usemap="#Map" border="0" alt="the map of Bradley">
<area shape="rect" coords="62,83,74,95" href="http://www.chester.ac.uk" target="_blank" title="Chester University" alt="Chester">
Validate the code with the W3C.
Next thing I'd suggest is purely optional but a text only repeat of the nav at the top of the page.
Put the text in the same colour as the background so it's not visible.
Add: a:focus {color:red} so a keyboard user can activate it too.
hope that helps.
Bookmarks