I would like to use custom attribute inside H tag
for example
<h3 mydata="1">header</h3>
Is this style is good for SEO ?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This attribute will cause your HTML to stop validating because
mydatais not a recognized attribute for the HTML DOCTYPE.Instead, use
data-attributes to store data. These are not parsed by search engines and have no effect on the SEO value of your page.For more information, see: http://www.w3.org/TR/html5/elements.html#embedding-custom-non-visible-data-with-the-data-attributes