|
|
|
|

- DIVIDE AND CONQUER: The <DIV> tag is
helpful for aligning elements in a table. It works better than just
align="center" or align="left", because it's not subject to cell
padding, which can throw off a true alignment. The code will look like this: <DIV
Align="center">...</DIV>
- RUNOFF: The <NOBR> tag forces a
block of text to remain on a single line, even if it scrolls off to the side of the
screen. Within the <NOBR> tag, you can use the <WBR> tag, which tells the
browser to insert an optional line break at the tag location if needed. Suggested use:
Suppose you have a hyphenated word, such as Waldorf-Astoria, and you want the
Waldorf and the Astoria to be on the same line. To do this, simply insert the <NOBR>
tag right before the hyphenated word, and immediately follow it with the <WBR> tag.
Close the <NOBR> tag (with </NOBR> of course) right after the second word. The
browser will then put a line break, if needed, only before the first word.
- BLOCK THAT
QUOTE: Use the <Blockquote> tag to indent a paragraph from the left
margin. Use nested <Blockquote> tags for deeper indentations without using tables.
- YOU'VE BEEN FRAMED: Don't use frames
unless you have a good reason. Use them if you want to achieve multiple pages in one view,
if you need multiple scrolling regions, or if you want to keep the navigation static.
Make your site accessible to those without frame support. Paste the HTML source of
your first page into the <NOFRAMES> tag, and make it possible to navigate your
entire from that page.
|