HTML tags are the foundation of the HTML language. Tags are used to distinguish between the beginning and end of elements in the markup. Each HTML document consists of a tree of HTML
elements and text. Each HTML element is identified by a start (opening) and end (closing) tag. The opening and closing tags contain the tag name.
All HTML elements are divided into five types:
elements and text. Each HTML element is identified by a start (opening) and end (closing) tag. The opening and closing tags contain the tag name.
All HTML elements are divided into five types:
- Empty elements - <area>, <base>, <br>, <col>, <embed>, <hr>, <img>, <input>, <link>, <menuitem>, <meta>, <param> , <source>, <track>, <wbr>
- elements with unformatted text - <script>, <style>;
- elements that display unformatted text - <textarea>, <title>;
- Elements from another namespace - MathML and SVG;
- ordinary elements - all other elements.
0 Comments