SlideShare a Scribd company logo
1 of 56
Schema for Bloggers:
Structured Content, Demystified

mitch canter, @studionashvegas
http://www.binarychurch.com

#nmxschema
Who is this guy?
Mitch Canter, International Man of Mystery
Senior Designer, Medicare.com
Chief Creative Mercenary, studionashvegas.com
Blogger, binarychurch.com
International Speaker
An Introduction
The Web Has

Two Audiences
As content creators, we have to

Write For Both
…However…
We ultimately have

Two Options
“Keyword Stuffing”
…which is best done through

Schema
<schema>
HTML Tags that webmasters can use to markup their pages in
ways recognized by major search providers.
<schema>
Defining human-readable content into
search-engine readable content.
This is done through

Microdata
microdata
Microdata is an HTML5 specification that allows
machine-readable data to be embedded in
HTML documents.
Let’s look at an

Example
It could get lucky, but why

Take Chances?
The better option is to

Define The Information
Implementing

Schema
Step 1

Define The Format
Define The Format
<article>
<img src=“thumbnail.jpg” />
<h1>
<a href=“#”>Title</a>
</h1>
<p>by: Author’s Name</p>
<p>Published on Month, Date Year</p>
<div class=“entry”>
<p>Content</p>
</div>
<p class=“categories”>Categories: Cat 1</p>
</article>
Define The Format
<article itemscope itemtype="http://schema.org/Article”>
<img src=“thumbnail.jpg” />
<h1>
<a href=“#”>Title</a>
</h1>
<p>by: Author’s Name</p>
<p>Published on Month, Date Year</p>
<div class=“entry”>
<p>Content</p>
</div>
<p class=“categories”>Categories: Cat 1</p>
</article>
itemscope
Creates a new “item” – a group of name-value pairs associated
with microdata and schematic markup.
itemtype
An attribute that defines the
microdata vocabulary in use.
Step 2

Assign The Properties
Assign The Properties
<article itemscope itemtype="http://schema.org/Article”>
<img src=“thumbnail.jpg” />
<h1 itemprop=“name headline”>
<a href=“#”>Title</a>
</h1>
<p>by: Author’s Name</p>
<p>Published on Month, Date Year</p>
<div class=“entry”>
<p>Content</p>
</div>
<p class=“categories”>Categories: Cat 1</p>
</article>
itemprop
An attribute that labels the properties of the content
Assign The Properties
<article itemscope itemtype="http://schema.org/Article”>
<img src=“thumbnail.jpg” />
<h1 itemprop=“name headline”>
<a itemprop=“url” href=“#”>Title</a>
</h1>
<p>by: Author’s Name</p>
<p>Published on Month, Date Year</p>
<div class=“entry”>
<p>Content</p>
</div>
<p class=“categories”>Categories: Cat 1</p>
</article>
Assign The Properties
<article itemscope itemtype="http://schema.org/Article”>
<img src=“thumbnail.jpg” />
<h1 itemprop=“name headline”>
<a itemprop=“url” href=“#”>Title</a>
</h1>
<p>by:
<a href=“[plus-url]” itemprop=“author”>Author’s Name</a>
</p>
<p>Published on Month, Date Year</p>
<div class=“entry”>
<p>Content</p>
</div>
<p class=“categories”>Categories: Cat 1</p>
</article>
Assign The Properties
<article itemscope itemtype="http://schema.org/Article”>
<img src=“thumbnail.jpg” />
<h1 itemprop=“name headline”>
<a itemprop=“url” href=“#”>Title</a>
</h1>
<p>by:
<a href=“[plus-url]” itemprop=“author”>Author’s Name</a>
</p>
<p>Published on <span itemprop=“datePublished”>Month, Date
Year</span></p>
<div class=“entry”>
<p>Content</p>
</div>
<p class=“categories”>Categories: Cat 1</p>
</article>
Assign The Properties
<article itemscope itemtype="http://schema.org/Article”>
<img src=“thumbnail.jpg” />
<h1 itemprop=“name headline”>
<a itemprop=“url” href=“#”>Title</a>
</h1>
<p>by:
<a href=“[plus-url]” itemprop=“author”>Author’s Name</a>
</p>
<p>Published on <span itemprop=“datePublished”>Month, Date
Year</span></p>
<div class=“entry” itemprop=“articleBody”>
<p>Content</p>
</div>
<p class=“categories”>Categories: Cat 1</p>
</article>
Assign The Properties
<article itemscope itemtype="http://schema.org/Article”>
<img src=“thumbnail.jpg” />
<h1 itemprop=“name headline”>
<a itemprop=“url” href=“#”>Title</a>
</h1>
<p>by:
<a href=“[plus-url]” itemprop=“author”>Author’s Name</a>
</p>
<p>Published on <span itemprop=“datePublished”>Month, Date
Year</span></p>
<div class=“entry” itemprop=“articleBody”>
<p>Content</p>
</div>
<p class=“categories”>Categories: <span itemprop=“keywords”>
Cat 1</span></p>
</article>
Assign The Properties
<article itemscope itemtype="http://schema.org/Article”>
<img src=“thumbnail.jpg” />
<h1 itemprop=“name headline”>
<a itemprop=“url” href=“#”>Title</a>
</h1>
<p>by:
<a href=“[plus-url]” itemprop=“author”>Author’s Name</a>
</p>
<p>Published on <span itemprop=“datePublished”>Month, Date
Year</span></p>
<div class=“entry” itemprop=“articleBody”>
<p>Content</p>
</div>
<p class=“categories”>Categories: <span itemprop=“keywords”>
Cat 1</span></p>
</article>
Types of Schema
Article
An article, such as a news article
or piece of investigative report.
http://www.schema.org/Article
Review
A review of a restaurant, movie, or store.
http://www.schema.org/Review
Event
An event happening at a certain time
in a certain location.
http://www.schema.org/Event
Person
A person (living, dead, undead, or fictional).
http://www.schema.org/Person
Embeds
Video, Audio, or other non-text embeddable media.
(note: each media has a separate schema)
http://www.schema.org/AudioObject
http://www.schema.org/VideoObject
Creative
Books, Movies, Recipes, or other creative works.
(note: each type has a separate schema)
http://www.schema.org/Book
http://www.schema.org/Movie
http://www.schema.org/Recipe
Last question: Why bother with

Google+
Why Google+?
<article itemscope itemtype="http://schema.org/Article”>
<img src=“thumbnail.jpg” />
<h1 itemprop=“name headline”>
<a itemprop=“url” href=“#”>Title</a>
</h1>
<p>by:
<a href=“[plus-url]” itemprop=“author”>Author’s Name</a>
</p>
<p>Published on <span itemprop=“datePublished”>Month, Date
Year</span></p>
<div class=“entry” itemprop=“articleBody”>
<p>Content</p>
</div>
<p class=“categories”>Categories: <span itemprop=“keywords”>
Cat 1</span></p>
</article>
This allows you to claim your

Google Authorship
…which gets you a

Rich Text Snippit
Step 1 (if your site and email address share a domain):

Verify Your Email
https://plus.google.com/authorship
Step 1 (if your have a Gmail or Outlook address):

Link to Google+ Profile
<a href=“[profile-url]?rel=author”>Real Name</a>
Step 2

Link to Site in Google+
…under “Contributes To…”
Questions?
Twitter: http://www.twitter.com/studionashvegas/
Google+: http://plus.google.com/+MitchCanter
Facebook: https://www.facebook.com/mitchcanterspeaks
URL: http://www.binarychurch.com
Design: http://www.studionashvegas.com

Thanks!

More Related Content

What's hot

Hero conf13 analytics_remarketing
Hero conf13 analytics_remarketingHero conf13 analytics_remarketing
Hero conf13 analytics_remarketingHeather Cooan
 
Crawl Budget - Some Insights & Ideas @ seokomm 2015
Crawl Budget - Some Insights & Ideas @ seokomm 2015Crawl Budget - Some Insights & Ideas @ seokomm 2015
Crawl Budget - Some Insights & Ideas @ seokomm 2015Jan Hendrik Merlin Jacob
 
ARTDM 171, Week 15: Search Engine Optimization (SEO)
ARTDM 171, Week 15: Search Engine Optimization (SEO)ARTDM 171, Week 15: Search Engine Optimization (SEO)
ARTDM 171, Week 15: Search Engine Optimization (SEO)Gilbert Guerrero
 
Adaptive Cards in Bots, Windows, Outlook and your own applications
Adaptive Cards in Bots, Windows, Outlook and your own applicationsAdaptive Cards in Bots, Windows, Outlook and your own applications
Adaptive Cards in Bots, Windows, Outlook and your own applicationsMicrosoft Tech Community
 
SEO 101 webinar 10 25-2012
SEO 101 webinar 10 25-2012SEO 101 webinar 10 25-2012
SEO 101 webinar 10 25-2012451 Marketing
 
Search Engine Optimization courses in ghaziabad, Search engine Optimization t...
Search Engine Optimization courses in ghaziabad, Search engine Optimization t...Search Engine Optimization courses in ghaziabad, Search engine Optimization t...
Search Engine Optimization courses in ghaziabad, Search engine Optimization t...SEO Master LLC
 
Technical seo tips for web developers
Technical seo tips for web developersTechnical seo tips for web developers
Technical seo tips for web developersSingsys Pte Ltd
 
Seo quickguide 13steps
Seo quickguide 13stepsSeo quickguide 13steps
Seo quickguide 13stepsManos Litinas
 
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019patrickstox
 
1-04: HTML Elements
1-04: HTML Elements1-04: HTML Elements
1-04: HTML Elementsapnwebdev
 
Search engine optimization,Best SEO institute in Ghaziabad,SEO Courses in Gha...
Search engine optimization,Best SEO institute in Ghaziabad,SEO Courses in Gha...Search engine optimization,Best SEO institute in Ghaziabad,SEO Courses in Gha...
Search engine optimization,Best SEO institute in Ghaziabad,SEO Courses in Gha...SEO Ghaziabad
 
01. 02. html web engineering html &amp; introduction
01. 02. html   web engineering html &amp; introduction01. 02. html   web engineering html &amp; introduction
01. 02. html web engineering html &amp; introductionN Gull
 

What's hot (17)

Sahejpreet SEO basics
Sahejpreet SEO basicsSahejpreet SEO basics
Sahejpreet SEO basics
 
Hero conf13 analytics_remarketing
Hero conf13 analytics_remarketingHero conf13 analytics_remarketing
Hero conf13 analytics_remarketing
 
Crawl Budget - Some Insights & Ideas @ seokomm 2015
Crawl Budget - Some Insights & Ideas @ seokomm 2015Crawl Budget - Some Insights & Ideas @ seokomm 2015
Crawl Budget - Some Insights & Ideas @ seokomm 2015
 
Seo Cheat Sheet
Seo Cheat SheetSeo Cheat Sheet
Seo Cheat Sheet
 
ARTDM 171, Week 15: Search Engine Optimization (SEO)
ARTDM 171, Week 15: Search Engine Optimization (SEO)ARTDM 171, Week 15: Search Engine Optimization (SEO)
ARTDM 171, Week 15: Search Engine Optimization (SEO)
 
Adaptive Cards in Bots, Windows, Outlook and your own applications
Adaptive Cards in Bots, Windows, Outlook and your own applicationsAdaptive Cards in Bots, Windows, Outlook and your own applications
Adaptive Cards in Bots, Windows, Outlook and your own applications
 
SEO for developers
SEO for developersSEO for developers
SEO for developers
 
SEO 101 webinar 10 25-2012
SEO 101 webinar 10 25-2012SEO 101 webinar 10 25-2012
SEO 101 webinar 10 25-2012
 
Search Engine Optimization courses in ghaziabad, Search engine Optimization t...
Search Engine Optimization courses in ghaziabad, Search engine Optimization t...Search Engine Optimization courses in ghaziabad, Search engine Optimization t...
Search Engine Optimization courses in ghaziabad, Search engine Optimization t...
 
Technical seo tips for web developers
Technical seo tips for web developersTechnical seo tips for web developers
Technical seo tips for web developers
 
Seo quickguide 13steps
Seo quickguide 13stepsSeo quickguide 13steps
Seo quickguide 13steps
 
Charla SEO en CEEIM Murcia
Charla SEO en CEEIM MurciaCharla SEO en CEEIM Murcia
Charla SEO en CEEIM Murcia
 
Anchors!
Anchors!Anchors!
Anchors!
 
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
 
1-04: HTML Elements
1-04: HTML Elements1-04: HTML Elements
1-04: HTML Elements
 
Search engine optimization,Best SEO institute in Ghaziabad,SEO Courses in Gha...
Search engine optimization,Best SEO institute in Ghaziabad,SEO Courses in Gha...Search engine optimization,Best SEO institute in Ghaziabad,SEO Courses in Gha...
Search engine optimization,Best SEO institute in Ghaziabad,SEO Courses in Gha...
 
01. 02. html web engineering html &amp; introduction
01. 02. html   web engineering html &amp; introduction01. 02. html   web engineering html &amp; introduction
01. 02. html web engineering html &amp; introduction
 

Viewers also liked

Word Press & Podcasting: Like Digital PB&J
Word Press & Podcasting: Like Digital PB&JWord Press & Podcasting: Like Digital PB&J
Word Press & Podcasting: Like Digital PB&JMitch Canter
 
How to use WordPress for D*@& Near Anything - Updated for 3.0
How to use WordPress for D*@& Near Anything - Updated for 3.0How to use WordPress for D*@& Near Anything - Updated for 3.0
How to use WordPress for D*@& Near Anything - Updated for 3.0Mitch Canter
 
Level Up Your Marketing: Using Gamification to Enhance Your Marketing Campaigns
Level Up Your Marketing: Using Gamification to Enhance Your Marketing CampaignsLevel Up Your Marketing: Using Gamification to Enhance Your Marketing Campaigns
Level Up Your Marketing: Using Gamification to Enhance Your Marketing CampaignsMitch Canter
 
SEO For Bloggers - TBEX 2014
SEO For Bloggers - TBEX 2014SEO For Bloggers - TBEX 2014
SEO For Bloggers - TBEX 2014Mitch Canter
 
Beyond The Blog: Using WordPress as a Content Management System
Beyond The Blog: Using WordPress as a Content Management SystemBeyond The Blog: Using WordPress as a Content Management System
Beyond The Blog: Using WordPress as a Content Management SystemMitch Canter
 
Understanding WordPress: The World's Most Popular Content Management System
Understanding WordPress: The World's Most Popular Content Management SystemUnderstanding WordPress: The World's Most Popular Content Management System
Understanding WordPress: The World's Most Popular Content Management SystemMitch Canter
 
Connecting The Playgrounds - Integration between WordPress and the Big Social...
Connecting The Playgrounds - Integration between WordPress and the Big Social...Connecting The Playgrounds - Integration between WordPress and the Big Social...
Connecting The Playgrounds - Integration between WordPress and the Big Social...Mitch Canter
 
How To Design a Killer Blog (#bwe09 - Blog World Expo 09)
How To Design a Killer Blog (#bwe09 - Blog World Expo 09)How To Design a Killer Blog (#bwe09 - Blog World Expo 09)
How To Design a Killer Blog (#bwe09 - Blog World Expo 09)Mitch Canter
 
Wordpress 201: Beyond The Basics
Wordpress 201: Beyond The BasicsWordpress 201: Beyond The Basics
Wordpress 201: Beyond The BasicsMitch Canter
 
The Ultimate WordPress Experience (#podcincy)
The Ultimate WordPress Experience (#podcincy)The Ultimate WordPress Experience (#podcincy)
The Ultimate WordPress Experience (#podcincy)Mitch Canter
 
How To Use Wordpress For Dang Near Anything Pcn10
How To Use Wordpress For Dang Near Anything Pcn10How To Use Wordpress For Dang Near Anything Pcn10
How To Use Wordpress For Dang Near Anything Pcn10Mitch Canter
 
Why Wait to be a Rock Star? (Intro to Social Media for Business)
Why Wait to be a Rock Star? (Intro to Social Media for Business)Why Wait to be a Rock Star? (Intro to Social Media for Business)
Why Wait to be a Rock Star? (Intro to Social Media for Business)Mitch Canter
 
Making WordPress Dance (BCMEM Edition)
Making WordPress Dance (BCMEM Edition)Making WordPress Dance (BCMEM Edition)
Making WordPress Dance (BCMEM Edition)Mitch Canter
 
The Ultimate WordPress Experience for BlogWorldExpo2011 in LA (#bwela)
The Ultimate WordPress Experience for BlogWorldExpo2011 in LA (#bwela)The Ultimate WordPress Experience for BlogWorldExpo2011 in LA (#bwela)
The Ultimate WordPress Experience for BlogWorldExpo2011 in LA (#bwela)Mitch Canter
 
One Web To Rule Them All: A Look At Responsive Design
One Web To Rule Them All: A Look At Responsive DesignOne Web To Rule Them All: A Look At Responsive Design
One Web To Rule Them All: A Look At Responsive DesignMitch Canter
 
Making WordPress Dance
Making WordPress DanceMaking WordPress Dance
Making WordPress DanceMitch Canter
 
Wordpress 101: The Power of the Press
Wordpress 101: The Power of the PressWordpress 101: The Power of the Press
Wordpress 101: The Power of the PressMitch Canter
 
Blogging 101 / Intro to WordPress
Blogging 101 / Intro to WordPressBlogging 101 / Intro to WordPress
Blogging 101 / Intro to WordPressMitch Canter
 
The Ultimate WordPress Experience (for PodCampNashville #pcn11)
The Ultimate WordPress Experience (for PodCampNashville #pcn11)The Ultimate WordPress Experience (for PodCampNashville #pcn11)
The Ultimate WordPress Experience (for PodCampNashville #pcn11)Mitch Canter
 
WordPress Development with VVV, VV, and Vagrant
WordPress Development with VVV, VV, and VagrantWordPress Development with VVV, VV, and Vagrant
WordPress Development with VVV, VV, and VagrantMitch Canter
 

Viewers also liked (20)

Word Press & Podcasting: Like Digital PB&J
Word Press & Podcasting: Like Digital PB&JWord Press & Podcasting: Like Digital PB&J
Word Press & Podcasting: Like Digital PB&J
 
How to use WordPress for D*@& Near Anything - Updated for 3.0
How to use WordPress for D*@& Near Anything - Updated for 3.0How to use WordPress for D*@& Near Anything - Updated for 3.0
How to use WordPress for D*@& Near Anything - Updated for 3.0
 
Level Up Your Marketing: Using Gamification to Enhance Your Marketing Campaigns
Level Up Your Marketing: Using Gamification to Enhance Your Marketing CampaignsLevel Up Your Marketing: Using Gamification to Enhance Your Marketing Campaigns
Level Up Your Marketing: Using Gamification to Enhance Your Marketing Campaigns
 
SEO For Bloggers - TBEX 2014
SEO For Bloggers - TBEX 2014SEO For Bloggers - TBEX 2014
SEO For Bloggers - TBEX 2014
 
Beyond The Blog: Using WordPress as a Content Management System
Beyond The Blog: Using WordPress as a Content Management SystemBeyond The Blog: Using WordPress as a Content Management System
Beyond The Blog: Using WordPress as a Content Management System
 
Understanding WordPress: The World's Most Popular Content Management System
Understanding WordPress: The World's Most Popular Content Management SystemUnderstanding WordPress: The World's Most Popular Content Management System
Understanding WordPress: The World's Most Popular Content Management System
 
Connecting The Playgrounds - Integration between WordPress and the Big Social...
Connecting The Playgrounds - Integration between WordPress and the Big Social...Connecting The Playgrounds - Integration between WordPress and the Big Social...
Connecting The Playgrounds - Integration between WordPress and the Big Social...
 
How To Design a Killer Blog (#bwe09 - Blog World Expo 09)
How To Design a Killer Blog (#bwe09 - Blog World Expo 09)How To Design a Killer Blog (#bwe09 - Blog World Expo 09)
How To Design a Killer Blog (#bwe09 - Blog World Expo 09)
 
Wordpress 201: Beyond The Basics
Wordpress 201: Beyond The BasicsWordpress 201: Beyond The Basics
Wordpress 201: Beyond The Basics
 
The Ultimate WordPress Experience (#podcincy)
The Ultimate WordPress Experience (#podcincy)The Ultimate WordPress Experience (#podcincy)
The Ultimate WordPress Experience (#podcincy)
 
How To Use Wordpress For Dang Near Anything Pcn10
How To Use Wordpress For Dang Near Anything Pcn10How To Use Wordpress For Dang Near Anything Pcn10
How To Use Wordpress For Dang Near Anything Pcn10
 
Why Wait to be a Rock Star? (Intro to Social Media for Business)
Why Wait to be a Rock Star? (Intro to Social Media for Business)Why Wait to be a Rock Star? (Intro to Social Media for Business)
Why Wait to be a Rock Star? (Intro to Social Media for Business)
 
Making WordPress Dance (BCMEM Edition)
Making WordPress Dance (BCMEM Edition)Making WordPress Dance (BCMEM Edition)
Making WordPress Dance (BCMEM Edition)
 
The Ultimate WordPress Experience for BlogWorldExpo2011 in LA (#bwela)
The Ultimate WordPress Experience for BlogWorldExpo2011 in LA (#bwela)The Ultimate WordPress Experience for BlogWorldExpo2011 in LA (#bwela)
The Ultimate WordPress Experience for BlogWorldExpo2011 in LA (#bwela)
 
One Web To Rule Them All: A Look At Responsive Design
One Web To Rule Them All: A Look At Responsive DesignOne Web To Rule Them All: A Look At Responsive Design
One Web To Rule Them All: A Look At Responsive Design
 
Making WordPress Dance
Making WordPress DanceMaking WordPress Dance
Making WordPress Dance
 
Wordpress 101: The Power of the Press
Wordpress 101: The Power of the PressWordpress 101: The Power of the Press
Wordpress 101: The Power of the Press
 
Blogging 101 / Intro to WordPress
Blogging 101 / Intro to WordPressBlogging 101 / Intro to WordPress
Blogging 101 / Intro to WordPress
 
The Ultimate WordPress Experience (for PodCampNashville #pcn11)
The Ultimate WordPress Experience (for PodCampNashville #pcn11)The Ultimate WordPress Experience (for PodCampNashville #pcn11)
The Ultimate WordPress Experience (for PodCampNashville #pcn11)
 
WordPress Development with VVV, VV, and Vagrant
WordPress Development with VVV, VV, and VagrantWordPress Development with VVV, VV, and Vagrant
WordPress Development with VVV, VV, and Vagrant
 

Similar to Schema for Bloggers: Structured Content, Demystified

TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單偉格 高
 
Semantic web support for POSH
Semantic web support for POSHSemantic web support for POSH
Semantic web support for POSHDinu Suman
 
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateFronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateInventis Web Architects
 
Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016Nirav Patel
 
The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet Shubham Kumar Singh
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheetRohan Jha
 
Introduction to web components
Introduction to web componentsIntroduction to web components
Introduction to web componentsMarc Bächinger
 
Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)christopherfross
 
Frontend for developers
Frontend for developersFrontend for developers
Frontend for developersHernan Mammana
 
Django 1.10.3 Getting started
Django 1.10.3 Getting startedDjango 1.10.3 Getting started
Django 1.10.3 Getting startedMoniaJ
 
Structured data
Structured dataStructured data
Structured dataSon Dang
 
Iasi code camp 12 october 2013 shadow dom - mihai bîrsan
Iasi code camp 12 october 2013   shadow dom - mihai bîrsanIasi code camp 12 october 2013   shadow dom - mihai bîrsan
Iasi code camp 12 october 2013 shadow dom - mihai bîrsanCodecamp Romania
 
New CSS Layout Meets the Real World
New CSS Layout Meets the Real WorldNew CSS Layout Meets the Real World
New CSS Layout Meets the Real WorldRachel Andrew
 
HTML and CSS crash course!
HTML and CSS crash course!HTML and CSS crash course!
HTML and CSS crash course!Ana Cidre
 
Atomic design con pattern lab
Atomic design con pattern labAtomic design con pattern lab
Atomic design con pattern labUX Nights
 

Similar to Schema for Bloggers: Structured Content, Demystified (20)

Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單
 
Semantic web support for POSH
Semantic web support for POSHSemantic web support for POSH
Semantic web support for POSH
 
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateFronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
 
Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016Moz SEO Web cheat sheet 2016
Moz SEO Web cheat sheet 2016
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet The Web Developer's SEO Cheat Sheet
The Web Developer's SEO Cheat Sheet
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheet
 
Seo cheat sheet
Seo cheat sheetSeo cheat sheet
Seo cheat sheet
 
Seo cheat-sheet
Seo cheat-sheetSeo cheat-sheet
Seo cheat-sheet
 
Seo onpage for Developer
Seo onpage for DeveloperSeo onpage for Developer
Seo onpage for Developer
 
Introduction to web components
Introduction to web componentsIntroduction to web components
Introduction to web components
 
Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)Building the basics (WordPress Ottawa 2014)
Building the basics (WordPress Ottawa 2014)
 
Frontend for developers
Frontend for developersFrontend for developers
Frontend for developers
 
Django 1.10.3 Getting started
Django 1.10.3 Getting startedDjango 1.10.3 Getting started
Django 1.10.3 Getting started
 
Structured data
Structured dataStructured data
Structured data
 
Iasi code camp 12 october 2013 shadow dom - mihai bîrsan
Iasi code camp 12 october 2013   shadow dom - mihai bîrsanIasi code camp 12 october 2013   shadow dom - mihai bîrsan
Iasi code camp 12 october 2013 shadow dom - mihai bîrsan
 
New CSS Layout Meets the Real World
New CSS Layout Meets the Real WorldNew CSS Layout Meets the Real World
New CSS Layout Meets the Real World
 
HTML and CSS crash course!
HTML and CSS crash course!HTML and CSS crash course!
HTML and CSS crash course!
 
Atomic design con pattern lab
Atomic design con pattern labAtomic design con pattern lab
Atomic design con pattern lab
 

More from Mitch Canter

Local Development Made Easy: Multiple Methods for Local Development with Word...
Local Development Made Easy: Multiple Methods for Local Development with Word...Local Development Made Easy: Multiple Methods for Local Development with Word...
Local Development Made Easy: Multiple Methods for Local Development with Word...Mitch Canter
 
Level Up Your WordPress Security
Level Up Your WordPress SecurityLevel Up Your WordPress Security
Level Up Your WordPress SecurityMitch Canter
 
The Essential Tools for Before / After Your Content Goes Live!
The Essential Tools for Before / After Your Content Goes Live!The Essential Tools for Before / After Your Content Goes Live!
The Essential Tools for Before / After Your Content Goes Live!Mitch Canter
 
Storytelling of Biblical Proportions
Storytelling of Biblical ProportionsStorytelling of Biblical Proportions
Storytelling of Biblical ProportionsMitch Canter
 
Advanced Blog Design - New Media Expo 2013 (#nmx)
Advanced Blog Design - New Media Expo 2013 (#nmx)Advanced Blog Design - New Media Expo 2013 (#nmx)
Advanced Blog Design - New Media Expo 2013 (#nmx)Mitch Canter
 
Ultimate WordPress Experience for WordCampFayetteville #wcfay
Ultimate WordPress Experience for WordCampFayetteville #wcfayUltimate WordPress Experience for WordCampFayetteville #wcfay
Ultimate WordPress Experience for WordCampFayetteville #wcfayMitch Canter
 
How To Use WordPress for D#!$ Near Anything - WordCampColumbus (#wccbus)
How To Use WordPress for D#!$ Near Anything - WordCampColumbus (#wccbus)How To Use WordPress for D#!$ Near Anything - WordCampColumbus (#wccbus)
How To Use WordPress for D#!$ Near Anything - WordCampColumbus (#wccbus)Mitch Canter
 
The Ultimate WordPress Experience (BlogWorldExpo '11 - #bweny)
The Ultimate WordPress Experience (BlogWorldExpo '11 - #bweny)The Ultimate WordPress Experience (BlogWorldExpo '11 - #bweny)
The Ultimate WordPress Experience (BlogWorldExpo '11 - #bweny)Mitch Canter
 

More from Mitch Canter (8)

Local Development Made Easy: Multiple Methods for Local Development with Word...
Local Development Made Easy: Multiple Methods for Local Development with Word...Local Development Made Easy: Multiple Methods for Local Development with Word...
Local Development Made Easy: Multiple Methods for Local Development with Word...
 
Level Up Your WordPress Security
Level Up Your WordPress SecurityLevel Up Your WordPress Security
Level Up Your WordPress Security
 
The Essential Tools for Before / After Your Content Goes Live!
The Essential Tools for Before / After Your Content Goes Live!The Essential Tools for Before / After Your Content Goes Live!
The Essential Tools for Before / After Your Content Goes Live!
 
Storytelling of Biblical Proportions
Storytelling of Biblical ProportionsStorytelling of Biblical Proportions
Storytelling of Biblical Proportions
 
Advanced Blog Design - New Media Expo 2013 (#nmx)
Advanced Blog Design - New Media Expo 2013 (#nmx)Advanced Blog Design - New Media Expo 2013 (#nmx)
Advanced Blog Design - New Media Expo 2013 (#nmx)
 
Ultimate WordPress Experience for WordCampFayetteville #wcfay
Ultimate WordPress Experience for WordCampFayetteville #wcfayUltimate WordPress Experience for WordCampFayetteville #wcfay
Ultimate WordPress Experience for WordCampFayetteville #wcfay
 
How To Use WordPress for D#!$ Near Anything - WordCampColumbus (#wccbus)
How To Use WordPress for D#!$ Near Anything - WordCampColumbus (#wccbus)How To Use WordPress for D#!$ Near Anything - WordCampColumbus (#wccbus)
How To Use WordPress for D#!$ Near Anything - WordCampColumbus (#wccbus)
 
The Ultimate WordPress Experience (BlogWorldExpo '11 - #bweny)
The Ultimate WordPress Experience (BlogWorldExpo '11 - #bweny)The Ultimate WordPress Experience (BlogWorldExpo '11 - #bweny)
The Ultimate WordPress Experience (BlogWorldExpo '11 - #bweny)
 

Recently uploaded

"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 

Recently uploaded (20)

"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 

Schema for Bloggers: Structured Content, Demystified

  • 1. Schema for Bloggers: Structured Content, Demystified mitch canter, @studionashvegas http://www.binarychurch.com #nmxschema
  • 2. Who is this guy?
  • 3. Mitch Canter, International Man of Mystery Senior Designer, Medicare.com Chief Creative Mercenary, studionashvegas.com Blogger, binarychurch.com International Speaker
  • 5. The Web Has Two Audiences
  • 6.
  • 7.
  • 8. As content creators, we have to Write For Both
  • 10.
  • 12.
  • 14.
  • 15. …which is best done through Schema
  • 16. <schema> HTML Tags that webmasters can use to markup their pages in ways recognized by major search providers.
  • 17. <schema> Defining human-readable content into search-engine readable content.
  • 18. This is done through Microdata
  • 19. microdata Microdata is an HTML5 specification that allows machine-readable data to be embedded in HTML documents.
  • 20. Let’s look at an Example
  • 21.
  • 22.
  • 23.
  • 24. It could get lucky, but why Take Chances?
  • 25. The better option is to Define The Information
  • 28. Define The Format <article> <img src=“thumbnail.jpg” /> <h1> <a href=“#”>Title</a> </h1> <p>by: Author’s Name</p> <p>Published on Month, Date Year</p> <div class=“entry”> <p>Content</p> </div> <p class=“categories”>Categories: Cat 1</p> </article>
  • 29. Define The Format <article itemscope itemtype="http://schema.org/Article”> <img src=“thumbnail.jpg” /> <h1> <a href=“#”>Title</a> </h1> <p>by: Author’s Name</p> <p>Published on Month, Date Year</p> <div class=“entry”> <p>Content</p> </div> <p class=“categories”>Categories: Cat 1</p> </article>
  • 30. itemscope Creates a new “item” – a group of name-value pairs associated with microdata and schematic markup.
  • 31. itemtype An attribute that defines the microdata vocabulary in use.
  • 32. Step 2 Assign The Properties
  • 33. Assign The Properties <article itemscope itemtype="http://schema.org/Article”> <img src=“thumbnail.jpg” /> <h1 itemprop=“name headline”> <a href=“#”>Title</a> </h1> <p>by: Author’s Name</p> <p>Published on Month, Date Year</p> <div class=“entry”> <p>Content</p> </div> <p class=“categories”>Categories: Cat 1</p> </article>
  • 34. itemprop An attribute that labels the properties of the content
  • 35. Assign The Properties <article itemscope itemtype="http://schema.org/Article”> <img src=“thumbnail.jpg” /> <h1 itemprop=“name headline”> <a itemprop=“url” href=“#”>Title</a> </h1> <p>by: Author’s Name</p> <p>Published on Month, Date Year</p> <div class=“entry”> <p>Content</p> </div> <p class=“categories”>Categories: Cat 1</p> </article>
  • 36. Assign The Properties <article itemscope itemtype="http://schema.org/Article”> <img src=“thumbnail.jpg” /> <h1 itemprop=“name headline”> <a itemprop=“url” href=“#”>Title</a> </h1> <p>by: <a href=“[plus-url]” itemprop=“author”>Author’s Name</a> </p> <p>Published on Month, Date Year</p> <div class=“entry”> <p>Content</p> </div> <p class=“categories”>Categories: Cat 1</p> </article>
  • 37. Assign The Properties <article itemscope itemtype="http://schema.org/Article”> <img src=“thumbnail.jpg” /> <h1 itemprop=“name headline”> <a itemprop=“url” href=“#”>Title</a> </h1> <p>by: <a href=“[plus-url]” itemprop=“author”>Author’s Name</a> </p> <p>Published on <span itemprop=“datePublished”>Month, Date Year</span></p> <div class=“entry”> <p>Content</p> </div> <p class=“categories”>Categories: Cat 1</p> </article>
  • 38. Assign The Properties <article itemscope itemtype="http://schema.org/Article”> <img src=“thumbnail.jpg” /> <h1 itemprop=“name headline”> <a itemprop=“url” href=“#”>Title</a> </h1> <p>by: <a href=“[plus-url]” itemprop=“author”>Author’s Name</a> </p> <p>Published on <span itemprop=“datePublished”>Month, Date Year</span></p> <div class=“entry” itemprop=“articleBody”> <p>Content</p> </div> <p class=“categories”>Categories: Cat 1</p> </article>
  • 39. Assign The Properties <article itemscope itemtype="http://schema.org/Article”> <img src=“thumbnail.jpg” /> <h1 itemprop=“name headline”> <a itemprop=“url” href=“#”>Title</a> </h1> <p>by: <a href=“[plus-url]” itemprop=“author”>Author’s Name</a> </p> <p>Published on <span itemprop=“datePublished”>Month, Date Year</span></p> <div class=“entry” itemprop=“articleBody”> <p>Content</p> </div> <p class=“categories”>Categories: <span itemprop=“keywords”> Cat 1</span></p> </article>
  • 40. Assign The Properties <article itemscope itemtype="http://schema.org/Article”> <img src=“thumbnail.jpg” /> <h1 itemprop=“name headline”> <a itemprop=“url” href=“#”>Title</a> </h1> <p>by: <a href=“[plus-url]” itemprop=“author”>Author’s Name</a> </p> <p>Published on <span itemprop=“datePublished”>Month, Date Year</span></p> <div class=“entry” itemprop=“articleBody”> <p>Content</p> </div> <p class=“categories”>Categories: <span itemprop=“keywords”> Cat 1</span></p> </article>
  • 42. Article An article, such as a news article or piece of investigative report. http://www.schema.org/Article
  • 43. Review A review of a restaurant, movie, or store. http://www.schema.org/Review
  • 44. Event An event happening at a certain time in a certain location. http://www.schema.org/Event
  • 45. Person A person (living, dead, undead, or fictional). http://www.schema.org/Person
  • 46. Embeds Video, Audio, or other non-text embeddable media. (note: each media has a separate schema) http://www.schema.org/AudioObject http://www.schema.org/VideoObject
  • 47. Creative Books, Movies, Recipes, or other creative works. (note: each type has a separate schema) http://www.schema.org/Book http://www.schema.org/Movie http://www.schema.org/Recipe
  • 48. Last question: Why bother with Google+
  • 49. Why Google+? <article itemscope itemtype="http://schema.org/Article”> <img src=“thumbnail.jpg” /> <h1 itemprop=“name headline”> <a itemprop=“url” href=“#”>Title</a> </h1> <p>by: <a href=“[plus-url]” itemprop=“author”>Author’s Name</a> </p> <p>Published on <span itemprop=“datePublished”>Month, Date Year</span></p> <div class=“entry” itemprop=“articleBody”> <p>Content</p> </div> <p class=“categories”>Categories: <span itemprop=“keywords”> Cat 1</span></p> </article>
  • 50. This allows you to claim your Google Authorship
  • 51. …which gets you a Rich Text Snippit
  • 52. Step 1 (if your site and email address share a domain): Verify Your Email https://plus.google.com/authorship
  • 53. Step 1 (if your have a Gmail or Outlook address): Link to Google+ Profile <a href=“[profile-url]?rel=author”>Real Name</a>
  • 54. Step 2 Link to Site in Google+ …under “Contributes To…”
  • 56. Twitter: http://www.twitter.com/studionashvegas/ Google+: http://plus.google.com/+MitchCanter Facebook: https://www.facebook.com/mitchcanterspeaks URL: http://www.binarychurch.com Design: http://www.studionashvegas.com Thanks!