HTML tags
HTML Tags are special commands for the browser. They tell it what, for example, should be considered a page heading and what should be considered a paragraph.
Tags are built on the following principle: corner <, then the tag name, and then corner >. The tag name can consist of English letters and numbers. Examples of tags:
<h1>
<p>
<b>
Tags are usually written in pairs - an opening tag and a corresponding closing tag. The difference between the opening and closing tags is that in the closing tag after the corner < there is a slash /.
Everything that falls between the opening and closing tags is affected by our tag.
There are tags that don't need to be closed, such as br or img.