Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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...

share|improve this question

2 Answers

up vote 2 down vote accepted

HTML tag is just opening or closing entity. For example:

<p> and </p> are called HTMl tags

HTML element encompasses opening tag, closing tag, content (optional for content-less tags) Eg:

<p>This is the content</p> : This complete thing is called a HTML element

share|improve this answer
How did you find it? I was not able to find it when I searched... – user000001 Jan 20 '12 at 6:14
I just Googled it Honestly, does it helped? – 4M01 Jan 20 '12 at 6:20
1  
Yes it does help (that's why I marked your answer correct), sorry for not responding to you earlier. – user000001 Apr 19 at 0:50

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:

<h1></h1>

Where as elements are something that consists of start tag and end tag as shown:

<h1>Heading</h1>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.