
HTML stands for Hypertext Markup Language, and it is the means by which documents are displayed through web browsers like Netscape and Internet Explorer on the Internet. Essentially the browser reads your HTML document and decides (based on the instructions you put there) how to display your stuff, and where it is. HTML allows us to present text, images, sound files, even video in one integrated, good-looking screen. It was developed at CERN, a European physics lab, in the 1980s. In the early 1990s, grad students and faculty at Illinois, just down the road, created Mosaic, the first real web browser, which allowed for a user-friendly display of HTML documents, as well as FTP, Gopher, and other Internet goodies.
HTML Extensions: Netscape and Internet Explorer have built some "extensions" into the basic HTML standard. A standard is a set of guidelines and rules decided upon by a committee. These "extensions" are special features added on to the standard and supported by the browsers. Often a Netscape or IE extension will become part of the the next version of the standard.
HTML works by writing your command between angle brackets (< and >); many commands must be turned on (as in < b > for bold) and turned off (as in < /b >). Some commands, like < P > for paragraph or <BR> for break, don't need an end tag. A tag, like the <font> tag, can have attributes, which are special instructions, just like arguments modify commands in UNIX.
Download the skeleton of a HTML file to play around with by clicking right here.
| Content based tags |
| <cite> |
| <code> |
| <dfn> |
| <em> |
| <kbd> |
| <samp> |
| <strong> |
| <var> |
| Physical based tags |
| <b> |
| <big> |
| <blink> |
| <i> |
| <small> |
| <s> |
| <sub> |
| <sup> |
| <tt> |
| <u> |
Character Entities: Using special characters or characters with special
reserved purposes in HTML
| Numeric Entity | Named Entity | Symbol | Description |
| & | & | & | ampersand |
| < | < | < | less than angle bracket |
| > | > | > | greater than angle bracket |
|   | | nonbreaking space | |
| ¢ | ¢ | ¢ | cent sign |
| ¨ | ¨ | ¨ | umlaut |
| © | © | © | copyright symbol |