|
NUMERIC ENTITIES OF CHARACTER SET The following table contains some of the common numeric entities for the Latin character set. Note: Not all browsers can display all characters; Newer browsers seem to work better for handling character entities. There is NO space between characters of the numeric entity. |
| Character | Numeric Entity | Description |
| ¢ | & # 1 6 2 | Cents |
| £ | & # 1 6 3 | Pound sterling |
| ¥ | & # 1 6 5 | Yen sign |
| © | & # 1 6 9 | Copyright |
| « | & # 1 7 1 | Angle quotation mark, Left |
| ® | & # 1 7 4 | Registered |
| ± | & # 1 7 7 | Plus/Minus |
| µ | & # 1 8 1 | Micro sign |
| » | & # 1 8 7 | Angle quotation mark, Right |
| ¼ | & # 1 8 8 | One-fourth |
| ½ | & # 1 8 9 | One-half |
| ¾ | & # 1 9 0 | Three-fourth |
|
COLOR CHART This is a very good reference color chart which contains 256 colors and their respective hex codes. It is very useful when selecting colors for your web pages. Click here to view the color chart; Or download immediately. |
Marquee (scrolling text) Netscape user may not be able to see the effectAttributes: BGCOLOR, DIRECTION, ALIGN, BEHAVIOR, HEIGHT, WIDTH, LOOP, VSPACE, HSPACE, SCROLLDELAY, SCROLLAMOUNTEg: "< marquee behavior=slide direction=right >" Eg: "< marquee loop=infinite >" < A HREF="..." Target="..." >Turning off link underliningInclude this paragraph under the "< HEAD >":< STYLE > A { text-decoration: none; } < /STYLE > This will cause all the text links within that page to be without underlining. To have only certain text links without underlining, include 'class=abc' in the '< a href... >' code (eg, < a class=abc href="....." >), where 'abc' is a name given to that particular link and will have to be declared in the '< STYLE >' as 'A.abc { text-decoration: none;}' Automatic refresh/redirect of web pageUsing the 'META' tag, current or new page can be refreshed/redirected automatically after a period of time as specified by the author.To refresh the current page: < META HTTP-EQUIV="Refresh" CONTENT="time" >, where 'time' is number of seconds. To redirect to another page: < META HTTP-EQUIV="Refresh" CONTENT="time;URL=url" >, where 'url' is web address of the page that will be redirected to. |