what is html

Опубликовано: 17 Июнь 2026
на канале: HTML Email Expert
5
0

HTML stands for Hyper Text Markup Language.

By the name, we can understand that HTML is not a programming language. It is a Markup language.

So here Marking up means telling the browser actually what it is.
For example, this is a webpage we see heading, image, paragraph, links, lists here.

And HTML does it. HTML tells the browser to mark this is title and so on.

We use programming languages like javascript, asp.net php and so on to make the web page dynamic and to add a lot of features.
Whatever we use, We have to use HTML to create a webpage. Because web browsers recognize only HTML tags to render the web content.

So HTML is the very first step to learn to create a web page and an HTML Email Template.

An HTML element usually consists of a start tag and end tag, with the content inserted in between.

For example, this is h1 tag. H1 tag defines that it is a heading. You see there is an opening tag and a closing tag. We have to insert the texts or content between the two tags that we want to display in the browser.

If I click on opening tag, closing tag is being selected automatically.