Html – add a custom attribute to an HTML tag

custom-attributehtml

Can I add a custom attribute to an HTML tag like the following?

<tag myAttri="myVal" />

Best Answer

You can add custom attributes to your elements at will. But that will make your document invalid.

In HTML 5 you will have the opportunity to use custom data attributes prefixed with data-.