Creating Inline Spans
While you can organize big chunks of your Web page into head and body sections, into divisions, or even with headers (h1, h2, etc.), you can name smaller chunks or spans of text or other inline elements in order to identify them and apply styles to them.
To name inline spans:
- At the beginning of the inline content, type <span.
- If desired, type id="name", where name uniquely identifies the spanned content.
- If desired, type class="name", where name is the identifying name of the class that the spanned content belongs to.
- Type > to complete the opening span tag.
- Create the inline contents you wish to label.
- At the end of the span, type </span>.
Figure 3.18 The span tag is used to mark a bunch of inline content. You can then format the marked content however you like (which we'll do in Chapters 10 and 11).
Figure 3.19 Again, the span element gives your document underlying structure. You can't see its effect until you apply styles (see page 127). You can see this page with styles on my Web site (see page 26).