Bill's Playscript Library
Web TV Tutorial
Neat Tricks & Tools
WebTv Gif


NEAT TRICKS AND TOOLS

This is a section of the tutorial that will be updated from time to time as new 'tricks' and 'tools' are found...

INDEX
  1. The "&", "<" and ">" Symbols

  2. HTML Coded Characters

  3. Indenting A Paragraph

  4. Hidden Comments

  5. The Page Forwarding Trick

  6. More 'Neat Tricks To Come...

Note:
You Can Access Items On The Index
By Using The Hotlinks Above
or
By Scrolling Down The Page.

However,
Items May Not Be In The Same Order
As They Are Listed In The
Index Above
and
Some Of The Explanations/Instructions Aren't Even
On This Page!!!
(Hint: Safer To Use The Links Above!)

You May Also Find Non-Indexed
Or Blank Template Sections On This Page
Which Will Contain Additional
'Tricks & Tools'
In The Future.


•••••

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••

The "&", "<" and ">" Symbols

These symbols are among those which are used to generate HTML coding and therefore will either not show up if typed into lines of text or may cause problems for browsers trying to read your page.

Therefore, the following substitutions should be used:
To Create:Type:
"&" Sign&amp;
"<" Symbol&lt;
">" Sign&gt;
Note:
Case Sensitive!
use 'amp'
& not 'AMP.'


•••••

RELATED:
HTML CODED CHARACTERS

MORE ESCAPE CHARACTERS

•••••

GO TO PAGE INDEX

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••

Hidden Comments

If you have copied and pasted any of the example from the various tutorial pages onto you own page, you may have already figured this one out!

You can place 'hidden' comments on your page... comments that are only seen by someone who is viewing the HTML coding for your page...

Here's what you do:

<!-- PLACE YOUR COMMENTS HERE -->

This is a great tool to use just to leave little reminders to yourself throughout your html coding.

•••••

GO TO PAGE INDEX

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••

HTML Coded Characters

This ia another way to express special characters which either do not appear on the standard keyboard, or ones which (like the "&" symbol) may confuse some browsers if not expressed by either the "Escape sequence" (meantioned earlier) or the "HTML Coded Character" (shown below).

The following substitutions can be used:
To Create:Type:
Non-Breaking Space " " *&#160;
Inverted Exclamation "¡"&#161;
Pound Sterling "£"&#163;
Yen Sign "¥"&#165;
Copyright Sign "©"&#169;
Trademark Symbol "®"&#174;
Plus or Minus "±"&#177;
Paragraph sign "¶"&#182;
Middle Dot "·"&#183;
1/4 Fraction "¼"&#188;
1/2 Fraction "½"&#189;
3/4 Fraction "¾"&#190;
Inverted Question "¿"&#191;


•••••

* - The 'Non-Breaking' space when used between words, means that a normal line break (created by the display of your web page) will not occur between those two words. There is also a 'Regular' space created with the code: &#32; - I always use the &#160; code space.

NOTE:
Remember that the &#160; code creates a space, so don't put a 'typed in' space before or after it.
FOR EXAMPLE:
Correct: Hello&#160;There!
Which Creates:Hello There!
And Not: Hello &#160; There!
Which Creates:Hello   There!


•••••

Return to List

•••••

RELATED:

THE "&", "<" AND ">" SYMBOLS
and
INDENTING A PARAGRAPH



•••••

GO TO PAGE INDEX

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••

INDENTING A PARAGRAPH

You have probably already discovered that the <P> command/tag only createa a space between two sections of text. The new 'paragraph' is not indented. And, unless you use the <tt> (or similar command/tag) to alter the type of font/character you display, no matter how many space you type in before the first word of a new paragrapgh, you can never achieve more than one or two space indent.

SOLUTION:
Use the &#160; Coded Character!!!
Example:

Instead of typing:

One paragraph of text ends and then... <P>Another paragraph follows with a space between but no indenting of the first words...

and getting:

One paragraph of text ends and then...

Another paragraph follows with a space between but no indenting of the first words...

You type:

One paragraph of text ends and then... <P>&#160;&#160;&#160;&#160;&#160; Another paragraph follows with a space between and the first word is indented five spaces (more if you repeat the '&#160;' coded character more times)...

and get:

One paragraph of text ends and then...

     Another paragraph follows with a space between and the first word is indented five spaces (more if you repeat the '&#160;' coded character more times)...



•••••

GO TO PAGE INDEX

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••



•••••

GO TO PAGE INDEX

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••

More To Come!

Title Goes Here

Info Goes Here.

•••••

GO TO PAGE INDEX

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••



•••••

GO TO PAGE INDEX

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••

More To Come!

Title Goes Here

Info Goes Here.

•••••

GO TO PAGE INDEX

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••

More To Come!

Title Goes Here

Info Goes Here.

•••••

GO TO PAGE INDEX

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••



•••••

More To Come!

•••••

GO TO PAGE INDEX

GO TO WEBTV TUTORIAL MAIN PAGE



•••••



•••••



•••••

More To Come!

To Create This:
Same Code Goes Here & Creates The described effect

Use This Code:




•••••



•••••

GO TO WEBTV TUTORIAL MAIN PAGE