HTML Help - Useful HTML Tags To Customize Your Page
From
Theresa Coffey, TNT Editor..at SBI!
Want to "spruce up" your page with some advanced programming features
or custom HTML tags? Here's a selection of common "tags" you can use
to customize your page. Refer to this page for a quick refresher whenever
you are building or editing a page...
Bold
Use the <B>BOLD</B> tag to highlight/bolden a word. For example, <B>fast</B> results in fast.
Italic
Use the <I>ITALIC</I> tag to italicize a word. For example, <I>fast</I> results in fast.
Color
To put the word "apple" into the color "red," as an example, use
<FONT COLOR=RED>apple</FONT> which results in apple.
Simply stating the color will work for the common colors -- as you
can see,
<FONT COLOR=BLUE>sky</FONT> results in sky.
You can do the same for other colors -- simply replace "red" or "blue" above with the word "yellow" or "green" or "purple" or "orange" or "navy."
For an explanation of HEX code and full color selection, see...
http://www.htmlgoodies.com/tutors/colors.html
New paragraph
<P> breaks a new paragraph. Use this instead of two carriage returns. If you have several paragraphs to do, just put them all in one Text Block, each paragraph separated by <P> tag -- this is much more convenient than using several Text Blocks, each separated by a Line Break Block.
Break tags
Break tags are usually faster than using the "Line Break block"...
<BR><BR> is a routine line-break tag.
<br clear="all"> This will clear text beyond (not wrap around your graphic).When should you use, or not use, break tags?
Keep in mind these guidelines...
-
TEXT BLOCK (CENTER) after TEXT BLOCK (LEFT) = "no need" for break tag
-
TEXT BLOCK (LEFT) after GRAPHIC BLOCK (NONE) (where the graphic comes right after TEXT BLOCK (CENTER)) = "no need" for a break tag
-
TEXT BLOCK (LEFT) wrapping around GRAPHIC BLOCK (LEFT)(where the graphic comes after TEXT BLOCK (LEFT) = <br clear="all"><br clear="all"> (if you want a new paragraph to start below the graphic)
-
TEXT BLOCK (CENTER) after GRAPHIC BLOCK (CENTER) = <br clear="all"><br clear="all"> in the text following the graphic.
-
Put a regular break tag, <BR>, after a TEXT BLOCK (CENTER) which is to be a label above a GRAPHIC BLOCK (NONE).
-
Put a regular break tag, <BR>, after a TEXT BLOCK (LEFT), if you want a photo on next line.
Link Tag
Create a link by putting an "A HREF" tag around the text or graphic that you want to become a link. But use links from the Link Library if you want to be able to track those links through Click Analysis.
However, if you just want to create a non-trackable link that says...
Then you'd enter the following into your text block (no need to create a new block, just enter it with the rest of the text)...
<A HREF="http://www.abc.com">Go to abc.com</A>
See the first part (<A HREF=")? That's the opening "link tag" (also called "anchor tag"). The </A> closes it and the URL is where the link will go to.
Try it by clicking on the link above.
