Aesthetically speaking, I'd just say one thing: don't go over-the-top with repeating backgrounds and big in-your-face text elements et al. Keep it simple and stylish.

Originally Posted by
John
I think I like your dad already, why can't he help you? Is this some kind of father/son thing?
It's more satisfying to do it by one's self 
And the screen is very easy to read. can you describe what background you got.
No, the blue links against the blue Biro on the dark paper are quite hard to read.
Your Good Morning/Evening script:
Code:
<script type="text/javascript">
var d = new Date()
var time = d.getHours()
if (time < 12)
{
document.write("<b>Good morning</b>")
}
else
{
document.write("<b>Good Evening</b>")
}
</script>
Could be simplified to:
Code:
<script type="text/javascript">
document.write(("Good " + ((new Date()).getHours() < 12 ? "morning" : "evening")).bold());
</script>
Although John's right there too; if it were down to me, I'd have 0300 to 1200 as morning, then 1200 to 2100 as evening, and 2100 to 0300 as night.
Bookmarks