1HTML tag is just opening or closing entity. For example:
2
3<p> and </p> are called HTML tags
4
5HTML element encompasses opening tag, closing tag, content (optional for content-less tags) Eg:
6
7<p>This is the content</p> : This complete thing is called a HTML element
8