HTML Introduction


HTML full form is Hyper Text Markup Language. It’s used to create web pages.


HTML is not a programming language, it is a markup language that is the sum of many markup tags. In other words, each of these tags in HTML has a pre-determined specific function in an international or ideological way. Once the HTML code is loaded in the browser, these codes do their assigned work. That is, markup tags determine the position, display, etc. of the content on a web page. HTML tags tell the browser how to easily display any content. But it is very easy to learn.

To learn HTML, you need to understand three words well

  1. Element
  2. Tag
  3. Attribute

These words will always come and that they need to have a transparent idea.

html tutorial coderwell

Note : Some HTML tags have no content and no end tags(like the <br>, <hr> element). These tags are called empty elements.

Basic HTML Document Structure

Following is an example:

< !Doctype html>
<html>

<head>

<title>Page Title</title>

</head>

<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<a> This is a highper link.<a/>

</body>

</html>

Note : Only contents in the <body> section (white area above) will be displayed in the browser.