Note: I apologize if this question was asked but I was not able to find similar one anywhere. I notice that most people use words html tags and html elements interchangeably. But what is the difference between them? The way I see it that tags are in the source code and elements are processed tags (by the browser) in the DOM. Am I wrong...
|
|
|
HTML tag is just opening or closing entity. For example:
HTML element encompasses opening tag, closing tag, content (optional for content-less tags) Eg:
|
|||||||||
|
|
Tags are labels you use to mark up the begining and end of an element. All tags have the same format: they begin with a less-than sign "<" and end with a greater-than sign ">". Generally speaking, there are two kinds of tags - opening tags: and closing tags: . The only difference between an opening tag and a closing tag is the forward slash "/". You label content by putting it between an opening tag and a closing tag. HTML is all about elements. To learn HTML is to learn and use different tags. for example:
Where as elements are something that consists of start tag and end tag as shown:
|
|||
|
|
