Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone have a check list on the best practices for XHTML?

share|improve this question
3  
Following w3c rules? – UberNeet Feb 21 '10 at 8:09
1  
The best practice is to keep doing it until you're good at it. – Daniel Earwicker Feb 21 '10 at 8:18
Practice is no good without feedback to tell you when you get it wrong. It just makes people comfortable with their errors. – Quentin Feb 22 '10 at 14:53

closed as not constructive by Bill the Lizard Jun 9 '12 at 16:57

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

Have a look at XHTML Best Practices.

share|improve this answer

If you use the W3C validator service, you'll learn a lot about how your XHTML should be structured.

share|improve this answer
  1. Ensure the benefits outweigh the pain (otherwise stick to HTML)
  2. Validate
  3. Separate style from content
  4. Be accessible
  5. Be progressive
  6. Separate your concerns (keep CSS and JS in external files)
  7. Use UTF-8 (unless you are working in a language where 16 or 32 is more efficient)
  8. Test in multiple browsers as you develop (fixing all the IE6 bugs at the end is harder then fixing them as they show up)
share|improve this answer

I'd say best practices are to make your code clean. Organize your tags. Put notes if you want in your code /This is a note/. Have an external style sheet. Like may already point out, validate often at http://validator.w3.org/ validate your CSS too at: http://jigsaw.w3.org/css-validator/

Also, don't overlook the

<meta name="Description" content="you put in here the description of your page.  It will appear on search engines" />

Give a specific title to each page.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.