which one of the following is an empty tag
Answers
Answered by
4
Answer:
HTML elements with no content are called empty elements or empty tag. <br> is an empty element without a closing tag. Empty elements can be "closed" in the opening tag like this: <br/>.
Answered by
0
Answer:
<br />
Explanation:
1. <br /> is the empty tag in HTML.
2. <img src ="image location" alt="alternate text" /> is also an empty tag in HTML.
HTML tags
- HTML tags are the keywords.
- They define how web browser will format and display the contents.
- It helps to differentiate between HTML content and a simple content.
Empty Tag / Empty element
- An empty element is an element in the HTML that do not have any child node.
- Empty tags contain only the opening tag.
- But, empty tags can perform some actions in the webpage.
- syntax for empty tags is <tag_name>.
Few examples of empty tags are :
- <br>:
- <hr>:
- <img>:
- <input>:
- <link>:
- <meta>:
- <source>:
The empty elements in HTML are :
- <area>
- <base>
- <br>
- <col>
- <embed>
- <hr>
- <img>
- <input>
- <keygen>
- <link>
- <meta>
- <param>
- <source>
- <track>
- <wbr>
#SPJ2
Similar questions