• Register

What do you mean by empty elements in HTML?

asked Aug 16, 2012 by anonymous

3 Answers

0 votes
 
Best answer

An HTML element = <start tag> content </end tag>

For example: <h1>This is h1 element</h1>

Now there are many tags, for which content is absent. Such tags are empty elements and they are closed in start tag.

For example: <br/>

answered Aug 16, 2012 by anonymous
0 votes
Please visit the below site for more information. http://www.cs.tut.fi/~jkorpela/html/empty.html
answered Aug 29, 2012 by kristinakathy
0 votes
HTML Empty tag or element  is one that does not have any content or text which is known as an empty element.
Example:-
1)    <br>
2)    <hr>
3)    <img>
answered Oct 18, 2012 by edwinmiller

Related questions

1 answer
asked Aug 16, 2012 by anonymous
1 answer
asked Jun 25, 2012 by anonymous
2 answers
asked Aug 16, 2012 by anonymous
2 answers
asked Aug 16, 2012 by anonymous
...