HTML Tutorial for Beginners

HTML stands for Hypertext Markup Language. It was created by Berners-Lee in 1991. The first version of HTML was "HTML 2.0" and now the stable version is "HTML 5".In this tutorial we will learn basic and advance concepts of  HTML, this tutorial is developed for beginners and professionals.

Following are the major key factor of HTML :

  •  It stands for Hypertext Markup Language.
  •  It is used to create static web pages and web applications by HTML.
  •  It is a Markup language rather than a programming language.

Why learn HTML?

Before learning anything we must have to know some advantages or key points. The following are some key points.

  • Create Website: we can create a website as per our requirements.
  •  Web Designer:  We will become web designers and also start our professional careers. After HTML we must have to learn some CSS and JavaScript so we will discuss later. 
  • Learn other languages:  When you will understand the basics of HTML then other technology ( JavaScript, PHP, Java, or Angular) will help you learn easily.

HTML Example with Editor

Try Now

<!DOCTYPE html>
<html>
<head>
  <title>My First web page</title>
</head>
<body>
<h1>Good Job </h1>
<p>Finally we learn something about HTML</p>
</body>
</html>

 


Next