HTML stands for HyperText Markup Language

HTML 5 tutorial provides the basic and advanced concepts of HTML. HTML tutorial is developed for the beginners and professionals. In this tutorial, every topic is given step-by-step so that you can learn it in a very easy and efficent way. You can learn HTML from basic to professional level and then learning HTML with CSS and JavaScript you will be able to create your own interactive and dynamic website with creative user interface and flexible user experience.

HTML Full Form and It's Mean

  • HyperText means that it uses the HTTP part of the Internet
  • Markup means the code you write is annotated with keywords
  • Language means it can be read by both a human and a computer

Points to Remember :

  • HTML stands for HyperText Markup Language.
  • HTML is the standard markup language for creating Web pages
  • HTML is used to create web pages and web applications.
  • HTML consists of a series of elements.
  • HTML is widely used language on the web for markup.
  • HTML elements tell the browser how to display the content
  • We can create a static website using the HTML only.
  • Technically, HTML is a Markup language rather than a programming language.
  • HTML elements label pieces of content such as "This is Page Title","Heading 1", "this is paragraph" etc.

HTML Example with HTML Editor :

we will get you many HTML examples, at least one example for each topic with explanation and test with yourself. You can also edit and run these examples, with our online HTML code editor. Learning HTML is fun, and it's very easy to learn.

<!DOCTYPE html>
<html>
<head>
<title>This is Page Title</title>
</head>
<body>
  
<h1>Heading 1 </h1>
<p>this is paragraph</p>

</body>
</html>
  Try it Yourself

HTML VERSION

HTML is a markup language used by the browser to manipulate text, images, and other content, in order to display it in the required format. HTML was invent and created by Tim Berners-Lee in 1991. The first-ever version of HTML was HTML 1.0, but the first standard version was HTML 2.0, published in 1995.

HTML Released Year
Version Year
HTML 1 1993
HTML 2 1995
HTML 3 1997
HTML 4 1999
HTML 4.01 2012
HTML 5 2014