+ 1
What are the differences between tags and elements in HTML 😔
2 ответов
+ 2
What do you mean by elements? 🧐
Aren't tags just HTML elements?
There are tags (body, p, div, etc.), there are properties (href="", class="", etc.)... that define their properties, there are classes that help customize the display of content in CSS... and so on.
Could you give an example?
+ 2
The elements are composed by tags
HTML Element = opening tag + content + closing tag
Tag example = <p>
Element example = <p>Content</p>