Do all browsers support using different end tags?
For example:
<p> hello </p value='f'>
or
<p> hello </p hello_end>
Do all browsers support using different end tags?
For example:
<p> hello </p value='f'>
or
<p> hello </p hello_end>
Probably you may be a HTML newbie
As mentioned by Pasty
http://www.w3.org/TR/html5/syntax.html#end-tags
HTML Standard is having attribute value pairs in the starting tag like
<p attr='value'>
and not at the end tags
Even if you place some value those will be ignored.