Skip to main content

The charset in html

What is character encoding ? 
* ASNI (Windows-1252) was the original windows character set.
   ASNI is indectial to ISO-8859-1 aceept that ASNI has 32 extra
   characters.

* Because ANSI and ISO-8859-1 were so limited, html 4 also
   submitted UTF-8.

The html charset attribute 
* To display an html page correctly, a web browser must know that
   character set used in the page.

* This is specified in the tag of <meta>.  

Comments

Popular posts from this blog

The styles in html

THE HTML STYLE ATTRIBUTE   * THE SETTINGS OF AN STYLE HTML ELEMENT, CAN BE    DONE WITH THE ATTRIBUTE OF STYLE. * THE ATTRIBUTE OF STYLE IN HTML HAS THE    FOLLOWING SYNTAX. MORE INFORMATION PLEASE    CLICK HERE .  

The Entities in html

HTML Entities * The characters reserved in HTML they must be replaced with     entities characters. * The character was not present on your keyboard they can also be    replaced by entities. HTML Entities * There are some characters which are reserved in HTML. *  If you use the greater then (>) or less than (<) sign in your text,      the browser was might mix them with tags. *  The entities character are used to display the character reserved     in HTML. More information please click here .    

The javascript in html

THE TAG OF < SCRIPT > IN HTML   * THE TAG OF < SCRIPT > IS USED TO DEFINES A    CLIENT-SIDE SCRIPT <JAVA SCRIPT> .         * THE ELEMENT OF < SCRIPT >EITHER CONTAINS    SCRIPTING STATEMENT, OR TO POINTS TO AN    EXTERNAL SCRIPT FILE THROUGH THE ATTRIBUTE OF   < SRC >. MORE INFORMATION PLEASE CLICK HERE.