Understanding HTML Tags and Elements

HTML is Hyper Text Markup Language. Let’s break it down.
Hyper Text: the text is not normal; it makes something happen.
Markup: It has a certain way of writing it.
HTML tags are the way we write HTML forthe creation of web pages on the internet. The default page of any website is index.html standardised by the World Wide Web Consortium.

That’s how an HTML element usually looks. It is made up of the start tag, content and end tag.
However, there are exceptions to this normal HTML element format called Self-closing; those that don’t require a closing tag. like <img>, <a> and many more.
The elements take up the space of the web page, thus there is a differentation in them. Like,
Block-Level Elements: The elements that don’t take the full width of the webpage by default. eg:
<a>,<div>, etc..Inline elements: The elements that take the full width of the webpage by default. eg:
<p>,<h1>, etc..
There are many HTML tags, but the common ones are
Headings (h1-h6), paragraph (p), span (span),
Containers
div,header,footer,mainLinks
a, ImagesimgTable
table,th,thead,tbody,tdForms
form,input,label,button,select,textareaSemantic
nav,aside,figure
More on HTML, maybe another day.



