Contents
Getting started DOCTYPE declaration META & TITLE tags Colour & layout Text organization
Tables Validation |
Before I introduce the tags used in organizing text on a web page to you, I have to explain the difference between the two types of elements [main tags] that go into the BODY section.
One type is called inline elements, these include the following tags [don't worry about what they mean for now, I'll explain that later]:
<A>, <B>, <BIG>, <BR>, <FONT>, <I>, <IMG>, <Q>, <SMALL>, <SPAN>, <STRONG>, <SUB>, <SUP>, and <U> Note that these are not all inline elements that exist, only the ones that you might need in designing your pages. The other type of elements is called block-level elements [again, these aren't all the b-l elements that there are]: <BLOCKQUOTE>, <CENTER>, <DIV>, <DL>, <H1>, <H2>, <H3>, <H4>, <H5>, <H6>, <HR>, <MENU>, <OL>, <P>, <PRE>, <TABLE>, <UL>, <DD>, <DT>, <LI>, <TD>, <TH>, and <TR> |