Posts Tagged ‘html’

Tools for Creating Web Pages

Saturday, October 18th, 2008

There are many great tools available today for creating web pages. These include basic to advanced text and HTML editors, full-blown web development packages, and at least one browser toolbar designed specifically for the web developer.
(more…)

Using Entity Names

Friday, October 10th, 2008

Some characters have special meaning in HTML documents. When you want to use these characters in your text, you can use their “entity names” to prevent browsers from misinterpreting them. For example, the lesser-than and greater-than signs (<, >) are used to form tags in HTML code. Using the entity names < and > instead of < and > prevents browsers from interpreting the characters as tag brackets.
(more…)