Home   Notes 

HTML

Local

External


Style inline

See below for my style

<p style="color: #ff0000; font-size: xx-large;">thing style applies to</p>

Frames

Making a child frames links replace its parents contents

Use <base target="_parent"> tag as shown below


Escape Characters

CharNameEntityDecimalHex
Horizontal Ellipse&hellip;&#8230;&#x2026;
üu with umlaut&#252;&#x00fc;

FORMS

External

TypeExampleCode
Button
Check Box
Check 1
Check 2
Password
Radio Button
Choice A
Choice B
Select[1]
Select[2]

Text

Character Set Info

Default Character set is UNICODE, so if you put this "&#x5516;" in a page you get this "唖" (assuming you have a japanese char set installed on your machine)

http://www.w3.org/International/questions/qa-doc-charset.html

Lots of special chars: http://www.w3.org/MarkUp/html-spec/html-spec_13.html


mailto:

NOTE: the maximum length for the mailto string is 256 chars

To 1 person:
<a href="mailto:a@b.com">to a@b.com</a>

To 2 people:
<a href="mailto:a@b.com;c@d.com">to 2 people</a>

To 2 people with a subject:
<a href="mailto:a@b.com;c@d.com?subject=about jane">to 2 people</a>

To 2 people with a subject and body:
<a href="mailto:a@b.com;c@d.com?subject=about jane&body=This text is the body">to 2 people</a>

With a subject and body, but the user must set who it is to:
<a href="mailto:?subject=about jane&body=This text is the body">to 2 people</a>

To 2 people with a subject and body, with cc and bcc:
<a href="mailto:a@b.com;c@d.com?subject=about jane&cce@f.com&bccg@h.com">to 2 people</a>

Mail via a FORM

<FORM method="post" action="mailto:noone@snai1mai1.com" enctype="text/plain">

<INPUT TYPE="text" NAME="email">

<-- Multiple subjects are concatinated together, seperated by a comma -->
<INPUT TYPE="hidden" NAME="subject" VALUE="web_monitor">
<INPUT TYPE="text" NAME="subject">

(rest of form content)

</FORM>

Image Map, Auto Info Drag Along

Example Image Map Auto Drag Along