HTML
From the Simple English Wikipedia, the free encyclopedia that anyone can change
HyperText Markup Language (HTML) is the simplest part of what makes web pages on the World Wide Web. It is a markup language, which means it has a mix of normal language that people can read, and special language that tells computer programs what to do. HTML is sent and received through HTTP.
A web browser is the program that reads the special language in HTML. This language tells the web browser how the web page should look. The web page can include writing, links, pictures, and even sound and video. It can also have writing that is not shown in the web page, which tells people about the web page—for example, the name of the person who made it.
The World Wide Web Consortium (W3C) develops HTML. The latest version is XHTML 1.1. It uses XML and can include other XML-languages.
[change] Example
Most tags have an opening tag to tell the browser where to start something, and an ending tag to tell the browser where to end. An example is <p> to start a new paragraph, and </p> to end a paragraph.
Here is an example page in HTML.
<html> <head> <title>Title of page</title> </head> <body> Body of the page </body> </html>
HTML is often used with Cascading Style Sheets (CSS) to build a complete webpage. Some browsers allow you to look at the HTML coding of the site.
[change] Browsers
Some HTML effects put in to webpages can only be viewed in certain browsers, because other browsers do not support/recognize the HTML. For example <marquee> text </marquee>, used to make text slide across the page, can only be used in Internet Explorer and Mozilla Firefox browsers.
For another example, Netscape users are the only ones who can see blinking codes: <blink>text</blink> into effect. Users with other browsers will see only plain text. This is because browsers has made their own tags.
[change] Other websites
- List of HTML editors on English Wikipedia
- HTML Source: Beginner's HTML Tutorial - a site of tutorials aimed at web design beginners.
- HTML Dog is a site that helps new writers write good, simple HTML and make it look good with CSS.

