... What is wrong with a lot of you xD It's so easy to complain but how about you give him some feedback to improve his work instead of this big pile of random posts...
Well Sir*EviL already said he could get you more than 4 errors and I also spotted a few of those I think.
First of all, I know you're probably new too coding so this might be a bit difficult to do but it'll certainly help if you start using the proper spacing right from the beginning. I know I forgot spacing all the time when I started coding and it was a huge pain to get used to.
Example:
Code:
<html>
<head>
<title>This is my title!</title>
</head>
<body>
This is my content!
</body>
</html>
Also, You're using full path's to images "C:\Users" NEVER use this again. In almost every case you can't use this path on a webhosting simply because you don't have the rights(or just don't know the path). So what I would suggest you to do is to place the images you use in the same directory as the .html so you can use it like this:
Code:
<img src="background.jpg" />
<img src="http://www.elitepvpers.com/forum/images/background.jpg" />
Well next thing, you're jusing the <body> tag multiple times. Which isn't valid html, Look at my first example. Everything you want to display needs to be between two body tags.
Just a few other quick things since this post is getting quite long:
- Don't use captial letters as tags, <P> is wrong <p> is correct.
- Don't forget to close tags, <li> something <li> something, is wrong <li>something</li> is right.
- Don't forget the head tag (See my first example)
I'm probably missing a thing or two since I'm not that into web development.
I don't know what you used to code this but I would suggest you get Notepad++ it's a great way to start coding webpages since it highlights the code and it gives you code lines which are a must have when you start with PHP.
To join in at the aspx vs php situation, I also agree PHP is a horrible language since it's so inconsistent and all the other stuff mentioned in lesderid's link. But hey IT'S FREE so I guess there is a big reason to use php. Anyway I think you can't just call one language or method better than the other one, it all depends on the project and the variables arround it.
EDIT: For some reason the second code block automaticly adds "http://www.elitepvpers.com/forum/" in front of the images/background.jpg. @Mods a bug in the editor??