Search Results

6
votes

When is the best time to use <b> and <i> in lieu of <strong> and <em>, if ever?

While in general I would stay away from non-semantic tags like b and i, strong and em are not direct replacements for b and i …
0
votes

When is the best time to use <b> and <i> in lieu of <strong> and <em>, if ever?

@dannyp, for book titles, you should not use i but cite instead. …
1
vote

What is the best online javascript/css/html/xhtml/dom reference?

Go straight to W3C docs. They're a bit cryptic at times, but they're solid documentation. For quirks, obviously sites like Quirksmode are good. But only once you've read actual W3C document …
10
votes

Should HTML co-exist with code?

Generally, it's better to keep presentation (HTML) separate from logic ("back-end" code). Your code is decoupled and easier to maintain this way. …