0
0
SEO Fundamentalsknowledge~10 mins

Structured data and schema markup in SEO Fundamentals - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to specify the type of content using schema.org vocabulary.

SEO Fundamentals
<script type="application/ld+json"> { "@context": "https://schema.org", "@type": "[1]" } </script>
Drag options to blanks, or click blank then click option'
ACSS
BHTML
CArticle
DJavaScript
Attempts:
3 left
💡 Hint
Common Mistakes
Using programming languages like HTML or CSS as the type.
Leaving the type blank or incorrect.
2fill in blank
medium

Complete the code to add a name property to the structured data.

SEO Fundamentals
<script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "[1]": "How to use schema markup" } </script>
Drag options to blanks, or click blank then click option'
Aname
Bheader
Ccontent
Dtitle
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'title' which is not a standard schema.org property.
Using 'content' or 'header' which do not represent the name.
3fill in blank
hard

Fix the error in the JSON-LD by completing the missing context URL.

SEO Fundamentals
<script type="application/ld+json"> { "@context": "[1]", "@type": "Person", "name": "Alice" } </script>
Drag options to blanks, or click blank then click option'
Ahttps://schema.org
Bhttp://schema.org
Chttps://example.com
Dhttp://example.com
Attempts:
3 left
💡 Hint
Common Mistakes
Using http instead of https.
Using unrelated URLs like example.com.
4fill in blank
hard

Fill both blanks to create a structured data snippet for a product with a name and price.

SEO Fundamentals
<script type="application/ld+json"> { "@context": "[1]", "@type": "[2]", "name": "Coffee Mug", "price": "12.99" } </script>
Drag options to blanks, or click blank then click option'
Ahttps://schema.org
Bhttps://example.com
CProduct
DArticle
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong context URLs.
Using incorrect types like Article for products.
5fill in blank
hard

Fill all three blanks to create a structured data snippet for an event with a name, start date, and location.

SEO Fundamentals
<script type="application/ld+json"> { "@context": "[1]", "@type": "[2]", "name": "Concert", "startDate": "[3]", "location": "Concert Hall" } </script>
Drag options to blanks, or click blank then click option'
Ahttps://schema.org
BEvent
C2024-09-15T20:00
Dhttps://example.com
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect context URLs.
Using wrong types like Product for events.
Incorrect date formats.