..oO(Brian)
Quote:
What is the significance with h1,h2,h3,h4,h5,p,ul? |
Semantics.
'hx' are heading elements. The number denotes the logical nesting level:
<h1>main document heading</h1>
<h2>sub heading</h2>
<h3>sub sub</h3>
<h2>...</h2>
'p' is a paragraph and 'ul' an unordered list. Easy.
Quote:
I am pretty confused about the best way to style my text. When should I
do what? Does it even matter? |
Sure does it matter. Don't think of how to style your text first, but
think (carefully!) about _what_ the text really is and how it can be
structured. Then decide which HTML elements fit best and _then_ think
about the styling. First HTML, then CSS.
Micha