iMarkDesigns
iMarkDesigns

Reputation: 1262

Valid HTML5 tag and attribute

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

Answers (1)

Divya Bhaloidiya
Divya Bhaloidiya

Reputation: 5064

Use following validating tool for HTML 5 :

http://html5.validator.nu/

http://validator.w3.org/

Use this code :

<article data-intro> .... </article>

Upvotes: 1

Related Questions