0

Do all browsers support using different end tags?

For example:

<p> hello </p value='f'>

or

<p> hello </p hello_end>
Mureinik
  • 297,002
  • 52
  • 306
  • 350
Eran Shmuel
  • 149
  • 2
  • 15

1 Answers1

2

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.

madhu131313
  • 7,003
  • 7
  • 40
  • 53