HTML Full Form

By : admin

What is the full form of HTML?

HTML

The full form of HTML is “HyperText Markup Language“. It is the standard markup language for creating Web pages. It is written in the form of HTML elements. Hyperlink refers to a series of connections in a page to other pages. Markup language means tags are used to define the page layout and elements within the page. Elements tell the browser how to display the content. HyperText Markup Language (HTML) elements label pieces of content such as “this is a heading”, “this is a paragraph”, “this is a link”, etc.

Example of HTML document

<!DOCTYPE html>
<html>
<head>
<title>Write your page title</title>
</head>
<body>

<h1>Write your first heading</h1>
<p>Write your first paragraph.</p>

</body>
</html>

Example Explained

  • The <!DOCTYPE html> declaration defines that this document is an HTML5 document.
  • The <html> element is the root element of an HTML page.
  • The <head> element contains meta information about the HTML page.
  • The <title> element specifies a title for the HTML page (which is shown in the browser’s title bar or in the page’s tab)
  • The <body> element defines the document’s body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
  • The <h1> element defines a large heading.
  • The <p> element defines a paragraph.

Brief History

Since the early days of WWW, there have been many versions of HTML:

YearVersion
1991Tim Berners-Lee invents HTML 1.0
1993HTML 1.0 is released. Not many developers are creating websites at this time.
1995HTML 2.0 is published. This contains the features of HTML 1.0 plus new features.
This remained the standard markup language for designing and creating websites until 1997.
1997HTML 3.0 was invented. Here, Dave Raggett introduced a fresh draft on HTML, which improved new features of HTML and gave more powerful characteristics for webmasters in designing websites.
1999W3C Recommendation: HTML 4.0. It is widely used and very successful.
2008WHATWG HTML5 First Public Draft
2012WHATWG HTML5 Living Standard
2014HTML 5.0 is released and used worldwide. It is said to be the extended version of HTML 4.01 which was published in 2012.
2016HTML 5.1 was published as a W3C Recommendation.
2017HTML 5.2 was published as a W3C Recommendation.