What are the end tags in HTML Program?
Answers
Answered by
0
Answer:an end tag, in which the element name is prefixed with a slash: </ tag > . In some versions of HTML, the end tag is optional for some elements. The end tag is required in XHTML.
Answered by
0
Answer:
Explanation:
An HTML element is defined by a starting tag. If the element contains other content, it ends with a closing tag. For example, <p> is starting tag of a paragraph and </p> is closing tag of the same paragraph but <p>This is paragraph</p> is a paragraph element
Similar questions