I have a few comments:
1) Since you're under age, don't display your age. Too easy for bad people to track you down and have a lot of info on you.
2) Don't use empty alt="" values in img tags. They serve 3 purposes: 1) If your images are broken, they display something. 2) If a disabled person is visiting your site, that description may be all they know of the image -- even if the description is that it's a useless image. 3) Give search engines a hint about what the image is about.
3) If by copyright(r) you mean that you have registered the copyright, then I doubt that and you're likely violating the law by saying so. I am not providing legal advice, just raising a red flag for you to investigate things on your own.
4)
PHP Code:
echo ' <div id="announce"> <img src="images/announce.png" alt="" /><br> <div id="1" style="border:#FF0000 2px SOLID;"> '.$row['news'].' </div></div> <div id="shout"> <img src="images/shout.png" alt="" /><br> <div id="1" style="border:#3399FF 2px SOLID;"> '.$row['shout'].' </div></div> ';
Is easier to read, fewer characters, and parsed very-slightly faster.
5) Title attributes for URLs are useful -- they hint to search engines what the site is about and can inform users as well.
6) Meta tags should be used if you want more search engine advantages.
7) No need to close php and then open it 2 lines down (with nothing inbetween). This is likely to cause you more session-based headaches than you want.
__________________
Jeremy Miller
Please login or register to view this content. Registration is FREE
|