Contact Us Essential Schema Example
SEO Help and Tips
Contact Us Essential Schema Example
Here's an example of a schema markup for the "Contact Us" page of a website:
{
"@context": "http://schema.org",
"@type": "ContactPage",
"name": "Contact Us",
"url": "https://www.yourwebsite.com/contact-us",
"description": "Contact information and form for getting in touch with us.",
"mainEntity": {
"@type": "ContactPoint",
"telephone": "+1-123-456-7890",
"contactType": "customer service",
"email": "contact@yourwebsite.com"
}
}
In this example:
"@type": "ContactPage" indicates that the schema markup is for a "Contact Us" page.
"name" represents the title or name of the "Contact Us" page.
"url" specifies the URL of the "Contact Us" page.
"description" provides a brief description of the purpose of the "Contact Us" page.
"mainEntity" represents the main entity on the "Contact Us" page, which in this case is a contact point.
"@type": "ContactPoint" specifies that the main entity is a contact point.
"telephone" represents the telephone number for contacting customer service.
"contactType" describes the type of contact, in this case, "customer service".
"email" represents the email address for contacting the organization.
Please note that this is a basic example, and you can include additional properties and details based on the specific contact information and structure of your "Contact Us" page.
Comments
Post a Comment
Thanks for your Comments.