HTML (HyperText Markup Language) is the main markup language (similar to xml) for creating web pages and other information that can be displayed in a web browser.
HTML elements form the building blocks of all websites. HTML allows images and objects to be embedded and can be used to create interactive forms. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. It can embed scripts written in languages such as JavaScript which affect the behavior of HTML web pages.
Syntax
HTML is written in the form of HTML elements consisting of tags enclosed in angle brackets (like <html>), within the web page content. Angle brackets are also referred to as left & right guillemets or chevrons.
HTML tags most commonly come in pairs like <h1> and </h1>, although some tags, known as empty elements, are unpaired, for example <img>. The first tag in a pair is the start tag, the second tag is the end tag (they are also called opening tags and closing tags). In between these tags web designers can add text, tags, comments and other types of text-based content.
The purpose of a web browser is to read HTML documents and compose them into visible or audible web pages. The browser does not display the HTML tags, but uses the tags to interpret the content of the page.
Standards
HTML standards, as well as those for many other web technologies, are maintained by the World Wide Web Consortium (w3c).
html4 was introduced in 1997, and the latest iteration, html5 was recently developed by the W3C and the Web Hypertext Application Technology Working Group (WHATWG).
The language specification and standards documents for HTML5 are available online here.
Notice: When asking questions regarding HTML, it is better to supply a jsfiddle (http://jsfiddle.net) demo of your code if possible, to provide an interactive example with your issue.
References
- W3C HTML/Specifications
- W3C HTML Validator
- SitePoint HTML Reference
- HTML Reference at the Mozilla Developer Network (MDN)
- The Web Standards Curriculum (Obsolete)
- HTML Reference at the Microsoft Developer Network (MSDN)
- W3Schools (Not associated with W3C.)
- Web Education Community Group Wiki
- W3C Web Content Accessibility Guidelines