TOP WEB SITE . INFO


Web Design Higlights
Web site step by step
How to select web designer
Website hosting guide
Where to host my web site

Promote your web site (SEO guide)
Search engines and Internet directories submission
Google AdWords tricks
Promote in Web Forums
Web forum signature usage
Website optimization guides :
Web page speed optimization
Web page errors optimization
Books on SEO

Web design articles
Overview
Web page HTML basic
Web site links (HTML links)
Meta tags in web page head
HTML Text formatting
HTML Table formatting
Web design programms

Visit also

Business Prestige

BG Resort Review



HTML Special characters handling

Previous: HTML Page structure



Some characters that are used for html formatting can not be used directly in the body text. Instead, in the html code they are represented with special combination of characters. Lets take for example the less than "<" and greater than ">" characters used to mark the html tags. When the users browser read them from an HTMl page, these characters are accepted as command - as tag markup. The characters and the tag name will no show in the browser's window. To display the brackets in the browsers window, we use their entity codes. A list of most used characters entity codes:

< less than &lt;
> greater than &gt;
non-breaking space &nbs;
& ampersand &amp;
" quotation mark &quot;
© copyright &copy;
® trademark &reg;

Note, when working in layout mode using WYSIWYG editor, we type the character we need and the editor automatically place in the html source code the corresponding entity code.

Next: Web site links ( HTML hyperlinks )