@naomi_cronin
Schema.org tags can be placed in various parts of an HTML page, depending on the specific type of content you want to markup. Here are some common locations:
1 2 3 4 5 6 7 8 9 10 |
<head> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "WebPage", "name": "Page Title", "description": "Page Description" } </script> </head> |
1 2 3 |
<article itemprop="mainEntity" itemscope itemtype="https://schema.org/Article"> <!-- Here goes the actual content of the blog post --> </article> |
1 2 3 4 |
<article itemscope itemtype="https://schema.org/Article"> <img itemprop="image" src="image.jpg" alt="Image Description"> <!-- Rest of the article content --> </article> |
Remember to consult the schema.org documentation for the specific type of content you wish to markup in order to ensure you are using the appropriate tags.