HTML EXTRA



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.
CharacterNumeric Entity Description
¢& # 1 6 2Cents
£& # 1 6 3Pound sterling
¥& # 1 6 5Yen sign
©& # 1 6 9Copyright
«& # 1 7 1Angle quotation mark, Left
®& # 1 7 4Registered
±& # 1 7 7Plus/Minus
µ& # 1 8 1Micro sign
»& # 1 8 7Angle quotation mark, Right
¼& # 1 8 8One-fourth
½& # 1 8 9One-half
¾& # 1 9 0Three-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.



SOMETHING NEW...

Marquee (scrolling text) Netscape user may not be able to see the effect

Attributes: BGCOLOR, DIRECTION, ALIGN, BEHAVIOR, HEIGHT, WIDTH, LOOP, VSPACE, HSPACE, SCROLLDELAY, SCROLLAMOUNT

Eg: "< marquee behavior=slide direction=right >"
These texts will slide in from the left and stop at the right of the screen.

Eg: "< marquee loop=infinite >"
These texts will scroll from right to left(default) continuously.


< A HREF="..." Target="..." >

  • Target="_new" will open the link in a new brower window.
  • Target="_top" will open the link in a full page (where the previous page is framed).
  • Target="xxx" , where 'xxx' is the name given to the frame, will direct the browser to open the link on the frame as named by 'xxx'



  • Turning off link underlining

    Include 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 page

    Using 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.



    Web sites which provide free web space: Geocities, Talkcity, HOMEPAGE.COM


    HOME