Created
November 13, 2019 01:55
-
-
Save CliffCrerar/d2948f726af32c7bb02d8df9e0a78bfe to your computer and use it in GitHub Desktop.
Check list page with seo tags
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> | |
| <head> | |
| <title>This is the title of my page</title> | |
| <meta name="description" content="type_your_description_here"> | |
| <!-- FB OG API --> | |
| <meta property="fb:app_id" content="1234567890" /> | |
| <meta property="og:type" content="article" /> | |
| <meta property="og:url" content="http://newsblog.org/news/136756249803614" /> | |
| <meta property="og:title" content="Introducing our New Site" /> | |
| <meta property="og:image" content="https://scontent-sea1-1.xx.fbcdn.net/hphotos-xap1/t39.2178-6/851565_496755187057665_544240989_n.jpg" /> | |
| <meta property="og:description" content="http://samples.ogp.me/390580850990722" /> Page Title. Maximum length 60-70 characters</title> | |
| <meta name="description" content="Page description. No longer than 155 characters." /> | |
| <!-- Twitter Card data --> | |
| <meta name="twitter:card" value="summary"> | |
| <!-- Twitter Card data --> | |
| <meta name="twitter:card" content="summary"> | |
| <meta name="twitter:site" content="@publisher_handle"> | |
| <meta name="twitter:title" content="Page Title"> | |
| <meta name="twitter:description" content="Page description less than 200 characters"> | |
| <meta name="twitter:creator" content="@author_handle"> | |
| <-- Twitter Summary card images must be at least 120x120px --> | |
| <meta name="twitter:image" content="http://www.example.com/image.jpg"> | |
| <!-- Open Graph data --> | |
| <meta property="og:title" content="Title Here" /> | |
| <meta property="og:type" content="article" /> | |
| <meta property="og:url" content="http://www.example.com/" /> | |
| <meta property="og:image" content="http://example.com/image.jpg" /> | |
| <meta property="og:description" content="Description Here" /> | |
| <meta property="og:site_name" content="Site Name, i.e. Moz" /> | |
| <meta property="fb:admins" content="Facebook numeric ID" /> | |
| <!-- Open Graph data --> | |
| <meta property="og:title" content="Title Here" /> | |
| <meta property="og:type" content="article" /> | |
| <meta property="og:url" content="http://www.example.com/" /> | |
| <meta property="og:image" content="http://example.com/image.jpg" /> | |
| <meta property="og:description" content="Description Here" /> | |
| <!-- Schema.org markup for Google+ --> | |
| <meta itemprop="name" content="The Name or Title Here"> | |
| <meta itemprop="description" content="This is the page description"> | |
| <meta itemprop="image" content="http://www.example.com/image.jpg"> | |
| <!-- Open Graph data --> | |
| <meta property="og:title" content="Title Here" /> | |
| <meta property="og:type" content="article" /> | |
| <meta property="og:url" content="http://www.example.com/" /> | |
| <meta property="og:image" content="http://example.com/image.jpg" /> | |
| <meta property="og:description" content="Description Here" /> | |
| <meta property="og:site_name" content="Site Name, i.e. Moz" /> | |
| <meta property="og:price:amount" content="15.00" /> | |
| <meta property="og:price:currency" content="USD" /> | |
| <script type="application/ld+json"> | |
| { | |
| "@context": "https://schema.org", | |
| "@type": "Organization", | |
| "url": "http://www.cliff-crerar.tech", | |
| "name": "Cliff-crerar gateway site", | |
| "logo": "https://personal-logo.now.sh/logosmallest.png", | |
| "contactPoint": { | |
| "@type": "email", | |
| "telephone": "[email protected]", | |
| "contactType": "Customer service" | |
| } | |
| } | |
| </script> | |
| </head> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment