Skip to content

Instantly share code, notes, and snippets.

@anova
Created August 25, 2023 12:27
Show Gist options
  • Save anova/fcec4b6729f752c0dcf58d3a6f9a7568 to your computer and use it in GitHub Desktop.
Save anova/fcec4b6729f752c0dcf58d3a6f9a7568 to your computer and use it in GitHub Desktop.
Sample HTML Structure for FAQPage Google Rich Results. https://search.google.com/test/rich-results
<!doctype html>
<html lang="tr" itemscope itemtype="https://schema.org/FAQPage">
<body>
<div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
<h2 itemprop="name">Sample Question 1?</h2>
<div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer">
<div itemprop="text">
<p>Answer example 1</p>
</div>
</div>
</div>
<div itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
<h2 itemprop="name">Sample Question 2?</h2>
<div itemprop="acceptedAnswer" itemscope itemtype="https://schema.org/Answer">
<div itemprop="text">
<p>Answer example 2</p>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment