Created
August 25, 2023 12:27
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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