View Single Post
Old 03-17-2014, 12:56 AM   #11
alligatortek001
Registered User
 
Join Date: Nov 2013
Posts: 92
Quote:
Originally Posted by RohanJaiswal View Post
There is simple diference between container tag and empty tag, in container tag, there is opening tag and closing tag but in empty tag, there is only opening tag.
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>
There is no ending tag required..
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
alligatortek001 is offline   Reply With Quote