Published on

HTML | Lets Start

Authors
  • avatar
    Name
    Saqib Tanveer
    Twitter

Introduction

HTML is not a programming language, first of all. Its just a language like english in which we write instrutions and browser do things based on our intsruction.

What is HTML

In our daily life we see that several people know only several languages. Same like that browser (chrome, opera etc) understand the language called HMTL. So that why we use HTML to talk with browser not english.

Code Samples

consider the following code:

<div>
  <h1>Heading</h1>
  <p>This is a paragraph.</p>
</div>

In the above code block we are just telling the browser that display a box and inside that box show a heading and a paragraph. we wrote the text of heading and paragraph inclosed by their tags (h1, p)

HTML is nothing more than this. Now you just have to explore the different tags of HTML and start using them.