HTML Tutorial HTML References

HTML - Tutorial



HTML stands for HyperText Markup Language. It is a language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript. HTML was created by Berners-Lee in late 1990 but "HTML 2.0" was the first standard HTML specification which was published in 1995. HTML 4.01 was a major version of HTML and it was published in late 1999. In 2004, development began on HTML5 and completed and standardized on 28 October 2014.

About Tutorial

This tutorial is intended for students and professionals interested in studying basic and advanced concepts of HTML. This tutorial covers all topics of HTML which includes tags, elements, attributes, formatting, images, tables, lists, links, fonts, forms, and headers. We believe in learning by examples therefore each and every topic is explained with lots of examples that makes you learn HTML in a very easy way. Along with this, almost all examples can be executed online which provides better understanding of the language and helps you to learn the language faster. The classical "Hello World" example is mentioned below for the illustration purpose:

<!DOCTYPE html>
<html>

  <head>
    <title>This is document title</title>
  </head>	

  <body>
    <h1>This is a heading</h1>
    <p>Hello World!</p>
  </body>	
  
</html>

The output of the above code will be:

Prerequisite

Before continuing with this tutorial, you should have basic understanding of Internet browser, text editor and operating system which includes creating files, creating directory, navigating through directory, saving files and different file format like JPG, JPEG etc.