Empty tags are the ones that do not need to be closed. They once opened are not closed like <br>.
<BR> i.e. break line is an empty tag. An empty tag once opened is not needed to be closed.
In HTML, all tags are elements and all HTML elements other than empty elements and <p> elements require a start and end tag to delimit the element's content. The <br> tag is an example of an empty element (there is no </br> tag). However, an empty element can also be closed by the start tag, such that <br /> is acceptable (<br /> is a requirement of XHTML but not HTML).
HTML tags are the predefined tags that are embedded within the "<>". Each HTML tags has the following attributes and operations.
No tags are used in CSS. Tags are actually what CSS primarily styles.
You can use Notepad to write HTML pages, and HTML consists of tags. So you would be writing a lot of tags when using Notepad to create a HTML page.
HTML cannot work without it's tags. It uses tags for it's scripting work.
HTML can be added by adding tags to the code. HTML tags are the ones that cause the view to modify.
An HTML webpage is a collection of HTML tags. The tags are arranged in a proper way to create a web page.
HTML contains many more than 2 tags. Most tags come in a set of 1 opening and 1 closing tag. For example, <html> and </html>.
HTML tags are put between <>. Example: <FONT size="2">
HTML uses tags for its complete functionality. These tags are defined to do a certain work.
<html> <body> <div></div> </body> </html> that is an empty div tag, there is nothing in between the <div> and </div>