What is the difference between an HTML Element and an HTML Tag ?
Is there any difference with rendering ? Any there special considerations when using a tag or an element ?
What is the difference between an HTML Element and an HTML Tag ? Is
Share
ElementandTagare two terms that generally refer to the same thing.When programming against HTML, however,
Tagusually refers to a string (eg,"<b>...</b>), whereasElementrefers to a DOM object representing a tag.