Structured Data Test
tool in developement
About Structured Data Test

Check if your webpage is using structured data markup. Search engines use structured data to better understand the content of your webpage and to create rich snippets in search results (which helps increase click-through rate to your site).

HTML5 Microdata is an easy way to add semantic markup to your web pages. Search engines rely on this markup to improve the display of search results, making it easier for people to find the right web pages.

Here is a simple example of how to use HTML5 microdata in your contact web page:

        <div itemscope itemtype="http://schema.org/Person">
          <span itemprop="name">Joe Doe</span>
          <span itemprop="company">The Example Company</span>
          <span itemprop="tel">604-555-1234</span>
          <a itemprop="email" href="mailto:[email protected]">
              [email protected]
          </a>
        </div>