Reputation: 1262
I would like to know if this code is allowed?
<article intro> .... </article>
I would like to use this if this is valid as attribute/elements of HTML5. If possible, i wanted to use this to simplify my HTML / CSS connection. Instead of using class="intro" will use [intro].
Upvotes: 0
Views: 196
Reputation: 5064
Use following validating tool for HTML 5 :
Use this code :
<article data-intro> .... </article>
Upvotes: 1