In this course , we will learn all the latest concepts and all mandatory topics for a beginner through which they can learn HTML online , and run simple to advanced level programs, to be an expert one day.
we will cover step by step topics to guide you to every possible topics in HTML . SO,
Stay tuned with every updated aspect.

Let’s start with the HTML Basics.
HTML stands for Hyper text markup language ,though HTML is not a programming language
HTML is used to create and layout web pages as it comprises of a markup language and a hypertext. The function of any HTML document consists of small markup tags, it starts with a start tag and closes with an end tag.
Example:
<!DOCTYPE HTML>
<html>
<head>
<title> Sample of HTML Format </title>
</head>
<body>
<h1> My First Heading </h1>
<h1> My Second Heading </h1>
<p> My first paragraph. </p>
</body>
</html>

You can open your HTML documents in browser like IE,Opera, Google Chrome, Safari , Firefox-responsibility to read HTML code and show your unique works .
<!DOCTYPE> represents document type and helps browsers to display web pages properly.
<html>
<head>
<title> Welcome Page </title>
</head>
<body>
Hello Friends, This is my welcome page.
</body>
</html>
Now after this small html code document you can start your practice and learning from now . Being a beginner type all the code above in any editor like notepad and save with an extension (.html), and after the saving part your unique work will be shown by any browser.
You can easily prepare for Interview questions answers list of HTML and HTML 5 by implementing all examples.
