views:

81

answers:

7

i want to check the mistake of our html code. are you suggest me some method in firefox to improve mark up code and solve old code mistake.

How to edit the html. who give me error list node by node like a ul is missing etc.

+2  A: 

Try going to http://validator.w3.org/

tau
+1  A: 

You're after this: http://validator.w3.org/.

Kyle Sevenoaks
+6  A: 

I think you need to look at the Web Developer Toolkit and Firebug plugins. Between them you can do just about anything you need to do in terms of debugging html and css.

Derek Clarkson
The Web Developer is awesome!
Kyle Sevenoaks
+4  A: 

Firefox addon:

HTML Validator

W3C:

W3C Validator

Sarfraz
+1  A: 

Not sure what you're referring to specifically. If you're talking about W3C validation you can access the validator tool here.

If something isn't displaying right you could install firebug (Firefox addon) to see what's happening, though this is more of a CSS issue than html.

Without knowing the specifics of your problem it is hard to give more specific advice than that.

primehunter326
+3  A: 

HI, You should use firebug for this will help to developer to know about error or mistake. and

http://validator.w3.org/ is also help to know mistakes and some software as dreamweaver and notepad++ will help.

kc rajput
@KC you are good to help others!
diEcho
A: 

If you're using Java on the server side, you can add the JTidy servlet to your web.xml to validate all HTML generated by your web application.

Andrew Swan