
Ferguson's Orrery

Chemistry Set

Solar Radiometer

Solar System

Glass Prism

Mirage Maker

MicroPro Microscope

Rainbow Spectrum
HTML was originally developed by Tim Berners-Lee while he was at CERN, the European Particle Physics Laboratory, as a way to make documents available to a wide variety of computers. To support this, he also created HTTP (HyperText Transfer Protocol), the underlying machinery of the WWW. You will come across HTTP again if you go on to write forms - interactive programs.
HTML was loosely designed as an SGML (Standard Generalized Markup Language) application. SGML is a large, complex system for creating 'markup languages'. However, HTML is extremely simple by comparison, but lacks the power and flexibility of other SGML-based languages such as XML. You will probably hear a lot about XML, since it's intended to be the ultimate successor to HTML.
XHTML 1.0 is the first step toward a modular and extensible web based on XML (Extensible Markup Language). It provides the bridge for web designers to enter the web of the future, while still being able to maintain compatibility with today's HTML 4 browsers. It is the reformulation of HTML 4 as an application of XML. It looks very much like HTML 4, with a few notable exceptions, so if you're familiar with HTML 4, XHTML will be easy to learn and use. XHTML 1.0 was released on January 26th 2000 as a Recommendation by the W3C.
|
HTML is the lingua franca for publishing hypertext on the WWW. It is a non-proprietary format, based upon SGML, for describing the structure of hypermedia documents - plain text (ASCII) files with embedded codes for logical markup, using tags like <a> and </a> to structure text into tables, hypertext links interactive forms, headings, paragraphs, lists, and more. It can be created and processed in a wide range of tools from simple plain text editors to sophisticated WYSIWYG (What You See Is What You Get) authoring tools. |
How is XHTML better than HTML?
Extensibility: Under HTML, an SGML (Standard Generalized Markup Language) application, the addition of a new group of elements requires alteration of the entire DTD (language specification). XML is a simplified subset of SGML. This greatly eases the development and integration of new collections of elements.
Portability: By the year 2002 as much as 75% of Internet access could be carried out on non-PC platforms such as palm computers, televisions, fridges, automobiles, telephones, etc. In most cases these devices will not have the computing power of a desktop computer, and will not be designed to accommodate ill-formed HTML as do current browsers (bloated with code to handle sloppy or proprietary HTML).
Start with Simple HTML in a Nutshell, if you're completely new to HTML!
An overview of the background and limitations of HTML, and a preview of the advantages to XML.
An overview of the background and advantages to XML.
An explanation of the rôle of DTDs, and three XML document types that correspond to the three HTML 4.0 DTDs: Strict, Transitional, and Frameset.
If you want to get into XHTML right away, start here. If you already know HTML 4, you're well on the way...
Just lots of examples!
Early versions of HTML were poor in presentation features. There was a heavy demand for more 'desktop publishing' style of appearance, especially as the WWW became popular with commercial users (image is critical!). The browser manufacturers obliged by creating new tags, or 'proprietary extensions' to HTML, some of which found their way into 'standard' HTML, as defined by the W3C (World Wide Web Consortium, headed by Tim Berners-Lee). But there were clear advantages to the original 'structure-based' spirit of HTML, supplemented by a separate system for describing document presentation.
This newer system is called CSS (Cascading Style Sheets), and offers the benefits of simplifying HTML files, and making it easy to create unifying site-wide styles which can be updated and applied instantly, without touching the HTML files. Browsers have been slow to implement CSS fully or even correctly, but the latest browsers do a tolerable job (for me, at least). It's a good idea to learn CSS as soon as you've finished this tutorial, and see if it's for you. Older browsers may not render your pages exactly as you designed them; the damage can be minimised by keeping a small amount of presentation code in your HTML...