Fajne
Ładnie dobrane kolory, fajna typografia, nawet (o dziwo) podoba mi się ten szary element pod topem - jakoś tak mimo, że nic w nim nie ma to pasuje.
OK, teraz trochę porad od strony kodu:
- tytuły w "Recent news" mógłbyś pisać w <h2> (czyli np. zamiast: <p class="Date">Prado based UI </p> --> <h2>Prado based UI</h2>
- menu pod "info" umieść w <ul>
- nie wiem czemu logo dałeś w <h1> (
<h1><a href="#"><img src="images/top-logo.gif" border="0" alt="Crystalpage Home" /></a>
</h1>)
- zamień:
<table width="80%" border="0" align="center">
<tr>
<td width="55%"><div align="center"><a href="images/login.jpg" target="_blank"><img border="0" src="images/login_thumb.jpg" alt="Click to enlarge" width="221" height="128" /></a></div></td>
<td width="45%"><div align="center"><a href="images/users1.jpg" target="_blank"><img border="0" src="images/users1_thumb.jpg" alt="Click to enlarge" width="171" height="128" /></a></div></td>
</tr>
<tr>
<td><div align="center"><a href="images/login.jpg" target="_blank">The login dialog </a></div></td>
<td><div align="center"><a href="images/users1.jpg" target="_blank">The users manager (alpha) </a></div></td>
</tr>
</table>
na:
<table>
<tr>
<td class="one"><a href="images/login.jpg" target="_blank"><img src="images/login_thumb.jpg" alt="Click to enlarge" width="221" height="128" /></a></td>
<td class="two"><a href="images/users1.jpg" target="_blank"><img src="images/users1_thumb.jpg" alt="Click to enlarge" width="171" height="128" /></a></td>
</tr>
<tr>
<td><a href="images/login.jpg" target="_blank">The login dialog </a></td>
<td><a href="images/users1.jpg" target="_blank">The users manager (alpha)</a></td>
</tr>
</table>
a w stylach:
Kod
#CONTENT table { width: 80%; margin: 0 auto; }
#CONTENT .one { width: 55% }
#CONTENT .two { width: 45% }
#CONTENT td { text-align: center }
A ogólnie to fajnie wygląda jak na stronę systemu CMS

Ocena 8/10