View Single Post
Old 10-25-2012, 09:08 AM   #4
henryc10
Registered User
 
Join Date: Oct 2012
Posts: 33
the difference between a container tag and an empty tag is quite simple. a conatiner tag is the one which has to be closed and an empty tag doesnt need to be closed.

for example:

CONTAINER TAG

<html> is the opening tag
</html> is the closing tag

<a href=""> is the opening tag
</a> is the closing tag

(closing is required)



EMPTY TAG

<img src="">

<br>

(no closing required)
henryc10 is offline   Reply With Quote