I have noticed that many sites out there are not up to date with their copyright information. Eithier none of the pages are updated or you forget to do it on some pages. You can make your life easier by using PHP.
Here is the PHP code that you will use so that you will never have to physically change the year come every January 1st .

<p>&copy
<?php
$startYear = 2005;
$thisYear = date('Y');

if ($startYear == $thisYear) {
echo $startYear;
}

else {
echo "$startYear - $thisYear";
}

?> Brian Hong </p>

Make sure that you have all your pages as .php if you are using the script above. You should also use the include: <?php include(“ ”); ?> feature of PHP to call up the script above from a single location, so that if you ever need to change anything in the script, your change will be reflected on all pages that call up the script.