Talk:HTML
Hypertext Markup Language (HTML) is a markup language designed for creating web pages, that is, information presented on the World Wide Web. Derived from SGML, which was used by the publishing industry, it is now an Internet standard maintained by the World Wide Web Consortium. The specification for version 4.01 is available there.
HTML generally appears in text files either stored or created by computers, and then sent over the internet to a web browser. These files contain marked-up text, that is, instructions for how a web browser should render the page. There are a number of different kinds of markup tag in HTML - perhaps the most important being the hyperlink tag, <a>, which allows links to be made between documents on the World Wide Web. Other tags tell the browser exactly how to render the text, such as <b> and <i>, which should produce embolden and italicised text respectively, others give more general instructions, such as <em> and <strong>, which instruct the browser to emphasise the text or to make it stronger than the rest of the text. Other tags allow for metadata to be included, such as the title of the page, or delimiting the header and body sections, which are all included within the <html> .. </html> tags. Other tags which have been added later as the specification evolved allow in-line pictures and video, tables and other enhancements required.
Why doesn't this work?