Show your support by donating any amount. (Note: We are still technically a for-profit company, so your contribution is not tax-deductible.) PayPal Acct: Feedback:
Donate to VoyForums (PayPal):
[ Login ] [ Contact Forum Admin ] [ Post a new message ] [ Search | Check update time ] |
non-breaking space. (moves forward one blank space).
non-breaking space 5x (moves forward 5 spaces).
 
Break (moves to next line)
<br>
new Paragraph
<p>
a Link can now be opened in a New-Tab (and, Outer-Text can be added when dragging cursor over link).
Onclick="window.open(this.href); return false" A title="outer text here"
The Complete linking code (with New-Tab feature & Outer-Text activated.)
<a href="http://URL here" Onclick="window.open(this.href); return false" A title="outer text here" >Title Of Link</a>
a more simple method of opening into new tabs. (slightly less smooth, but it uses less characters).
target="_blank"
☆☆☆————This is how it would look when used in a completed example———— ☆☆☆
<a href="http://URL here" target="_blank" >Title Of Link</a>
Here's the more complex "New-Tab" method .
Onclick="window.open(this.href); return false"
Outer-Text can be added.
A title="outer text here"
Boldface words
<b>
</b>
underline words
<u>
</u>
script. (Signature)
<em>
</em>
Typewriter style letters & words
<tt> </tt>
/* personal notes when using CSS */
finally; this is how I'm enclosing commands within a text-field.
<textarea rows="5" cols="66">
add text here. etc. etc.
</textarea>
(substitute the numbers in order to resize the field)
-adding the number of rows increases the height.[vertical]
-adding Columns widens the field [horizontally]