What is HTML?
HTML stands for Hypertext Markup Language. It is a standard markup languange for creating web pages. It is basic skeleton of a web page. When a user wants to create and structure sections, paragraphs and heading for web pages and applications, they can do it with the help of HTML. It would be best if you didn’t confuse HTML with a programming language. The main reason for that is HTML can’t create dynamic functionally. HTML is a programme that makes it possible for users to organise and format documents.
HTML is made of elements. These elements are responsible for creating web pages and define content in that webpage.
An HTML element is defined by a start tag<tag name>,attributes, content between them, and an end tag</tag name>.
Example:
<h1>My First Heading</h1>