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
 

Similar to NMX 2014 - Blogging - Schema for Bloggers: Structured Data, 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 NMX 2014 - Blogging - Schema for Bloggers: Structured Data, 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 NMX Events

NMX 2014 - Podcasting - The Community Effect - How To Build A Loyal Engaged C...
NMX 2014 - Podcasting - The Community Effect - How To Build A Loyal Engaged C...NMX 2014 - Podcasting - The Community Effect - How To Build A Loyal Engaged C...
NMX 2014 - Podcasting - The Community Effect - How To Build A Loyal Engaged C...NMX Events
 
NMX 2014 - Niche - 11 Skills the Military Teaches that Can Help You Succeed
NMX 2014 - Niche - 11 Skills the Military Teaches that Can Help You SucceedNMX 2014 - Niche - 11 Skills the Military Teaches that Can Help You Succeed
NMX 2014 - Niche - 11 Skills the Military Teaches that Can Help You SucceedNMX Events
 
NMX 2014 - Podcasting - How To Audio Podcast 100% from an iPad or iPhone
NMX 2014 - Podcasting - How To Audio Podcast 100% from an iPad or iPhoneNMX 2014 - Podcasting - How To Audio Podcast 100% from an iPad or iPhone
NMX 2014 - Podcasting - How To Audio Podcast 100% from an iPad or iPhoneNMX Events
 
NMX 2014 - Super Session - How to Convert Your Casual Readers into a Thriving...
NMX 2014 - Super Session - How to Convert Your Casual Readers into a Thriving...NMX 2014 - Super Session - How to Convert Your Casual Readers into a Thriving...
NMX 2014 - Super Session - How to Convert Your Casual Readers into a Thriving...NMX Events
 
NMX 2014 - Podcasting - You Already Have a Great Podcast: Here's How to Make ...
NMX 2014 - Podcasting - You Already Have a Great Podcast: Here's How to Make ...NMX 2014 - Podcasting - You Already Have a Great Podcast: Here's How to Make ...
NMX 2014 - Podcasting - You Already Have a Great Podcast: Here's How to Make ...NMX Events
 
NMX 2014 - Blogging - The Art of Crafting Jaw-Dropping Content: Why You Shoul...
NMX 2014 - Blogging - The Art of Crafting Jaw-Dropping Content: Why You Shoul...NMX 2014 - Blogging - The Art of Crafting Jaw-Dropping Content: Why You Shoul...
NMX 2014 - Blogging - The Art of Crafting Jaw-Dropping Content: Why You Shoul...NMX Events
 
NMX 2014 - Blogging - Rock and Roll Content: A Six-String Study for Creating ...
NMX 2014 - Blogging - Rock and Roll Content: A Six-String Study for Creating ...NMX 2014 - Blogging - Rock and Roll Content: A Six-String Study for Creating ...
NMX 2014 - Blogging - Rock and Roll Content: A Six-String Study for Creating ...NMX Events
 
NMX 2014 - Podcasting - Podcasting on a Tight Budget: Bootstrapping your Prod...
NMX 2014 - Podcasting - Podcasting on a Tight Budget: Bootstrapping your Prod...NMX 2014 - Podcasting - Podcasting on a Tight Budget: Bootstrapping your Prod...
NMX 2014 - Podcasting - Podcasting on a Tight Budget: Bootstrapping your Prod...NMX Events
 
NMX 2014 - Podcasting - Choosing the Right Content for Your Show
NMX 2014 - Podcasting - Choosing the Right Content for Your ShowNMX 2014 - Podcasting - Choosing the Right Content for Your Show
NMX 2014 - Podcasting - Choosing the Right Content for Your ShowNMX Events
 
NMX 2014 - Podcasting - Welcome To ESPN PodCenter… Wait, Don’t Go
NMX 2014 - Podcasting - Welcome To ESPN PodCenter… Wait, Don’t GoNMX 2014 - Podcasting - Welcome To ESPN PodCenter… Wait, Don’t Go
NMX 2014 - Podcasting - Welcome To ESPN PodCenter… Wait, Don’t GoNMX Events
 

More from NMX Events (10)

NMX 2014 - Podcasting - The Community Effect - How To Build A Loyal Engaged C...
NMX 2014 - Podcasting - The Community Effect - How To Build A Loyal Engaged C...NMX 2014 - Podcasting - The Community Effect - How To Build A Loyal Engaged C...
NMX 2014 - Podcasting - The Community Effect - How To Build A Loyal Engaged C...
 
NMX 2014 - Niche - 11 Skills the Military Teaches that Can Help You Succeed
NMX 2014 - Niche - 11 Skills the Military Teaches that Can Help You SucceedNMX 2014 - Niche - 11 Skills the Military Teaches that Can Help You Succeed
NMX 2014 - Niche - 11 Skills the Military Teaches that Can Help You Succeed
 
NMX 2014 - Podcasting - How To Audio Podcast 100% from an iPad or iPhone
NMX 2014 - Podcasting - How To Audio Podcast 100% from an iPad or iPhoneNMX 2014 - Podcasting - How To Audio Podcast 100% from an iPad or iPhone
NMX 2014 - Podcasting - How To Audio Podcast 100% from an iPad or iPhone
 
NMX 2014 - Super Session - How to Convert Your Casual Readers into a Thriving...
NMX 2014 - Super Session - How to Convert Your Casual Readers into a Thriving...NMX 2014 - Super Session - How to Convert Your Casual Readers into a Thriving...
NMX 2014 - Super Session - How to Convert Your Casual Readers into a Thriving...
 
NMX 2014 - Podcasting - You Already Have a Great Podcast: Here's How to Make ...
NMX 2014 - Podcasting - You Already Have a Great Podcast: Here's How to Make ...NMX 2014 - Podcasting - You Already Have a Great Podcast: Here's How to Make ...
NMX 2014 - Podcasting - You Already Have a Great Podcast: Here's How to Make ...
 
NMX 2014 - Blogging - The Art of Crafting Jaw-Dropping Content: Why You Shoul...
NMX 2014 - Blogging - The Art of Crafting Jaw-Dropping Content: Why You Shoul...NMX 2014 - Blogging - The Art of Crafting Jaw-Dropping Content: Why You Shoul...
NMX 2014 - Blogging - The Art of Crafting Jaw-Dropping Content: Why You Shoul...
 
NMX 2014 - Blogging - Rock and Roll Content: A Six-String Study for Creating ...
NMX 2014 - Blogging - Rock and Roll Content: A Six-String Study for Creating ...NMX 2014 - Blogging - Rock and Roll Content: A Six-String Study for Creating ...
NMX 2014 - Blogging - Rock and Roll Content: A Six-String Study for Creating ...
 
NMX 2014 - Podcasting - Podcasting on a Tight Budget: Bootstrapping your Prod...
NMX 2014 - Podcasting - Podcasting on a Tight Budget: Bootstrapping your Prod...NMX 2014 - Podcasting - Podcasting on a Tight Budget: Bootstrapping your Prod...
NMX 2014 - Podcasting - Podcasting on a Tight Budget: Bootstrapping your Prod...
 
NMX 2014 - Podcasting - Choosing the Right Content for Your Show
NMX 2014 - Podcasting - Choosing the Right Content for Your ShowNMX 2014 - Podcasting - Choosing the Right Content for Your Show
NMX 2014 - Podcasting - Choosing the Right Content for Your Show
 
NMX 2014 - Podcasting - Welcome To ESPN PodCenter… Wait, Don’t Go
NMX 2014 - Podcasting - Welcome To ESPN PodCenter… Wait, Don’t GoNMX 2014 - Podcasting - Welcome To ESPN PodCenter… Wait, Don’t Go
NMX 2014 - Podcasting - Welcome To ESPN PodCenter… Wait, Don’t Go
 

Recently uploaded

Call Girls In Andheri East Call 9167673311 Book Hot And Sexy Girls
Call Girls In Andheri East Call 9167673311 Book Hot And Sexy GirlsCall Girls In Andheri East Call 9167673311 Book Hot And Sexy Girls
Call Girls In Andheri East Call 9167673311 Book Hot And Sexy GirlsPooja Nehwal
 
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service 👖
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service  👖CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service  👖
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service 👖anilsa9823
 
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...baharayali
 
O9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking MenO9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking MenSapana Sha
 
Call Girls In Gurgaon Dlf pHACE 2 Women Delhi ncr
Call Girls In Gurgaon Dlf pHACE 2 Women Delhi ncrCall Girls In Gurgaon Dlf pHACE 2 Women Delhi ncr
Call Girls In Gurgaon Dlf pHACE 2 Women Delhi ncrSapana Sha
 
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779Delhi Call girls
 
定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一
定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一
定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一ra6e69ou
 
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...AJHSSR Journal
 
CALL ON ➥8923113531 🔝Call Girls Ashiyana Colony Lucknow best sexual service O...
CALL ON ➥8923113531 🔝Call Girls Ashiyana Colony Lucknow best sexual service O...CALL ON ➥8923113531 🔝Call Girls Ashiyana Colony Lucknow best sexual service O...
CALL ON ➥8923113531 🔝Call Girls Ashiyana Colony Lucknow best sexual service O...anilsa9823
 
Night 7k Call Girls Noida Sector 120 Call Me: 8448380779
Night 7k Call Girls Noida Sector 120 Call Me: 8448380779Night 7k Call Girls Noida Sector 120 Call Me: 8448380779
Night 7k Call Girls Noida Sector 120 Call Me: 8448380779Delhi Call girls
 
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCRElite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCRDelhi Call girls
 
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...makika9823
 
Website research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazineWebsite research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazinesamuelcoulson30
 
Elite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCR
Elite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCRElite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCR
Elite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCRDelhi Call girls
 
Dubai Call Girls O528786472 Diabolic Call Girls In Dubai
Dubai Call Girls O528786472 Diabolic Call Girls In DubaiDubai Call Girls O528786472 Diabolic Call Girls In Dubai
Dubai Call Girls O528786472 Diabolic Call Girls In Dubaihf8803863
 
Add more information to your upload Tip: Better titles and descriptions lead ...
Add more information to your upload Tip: Better titles and descriptions lead ...Add more information to your upload Tip: Better titles and descriptions lead ...
Add more information to your upload Tip: Better titles and descriptions lead ...SejarahLokal
 
Your LinkedIn Makeover: Sociocosmos Presence Package
Your LinkedIn Makeover: Sociocosmos Presence PackageYour LinkedIn Makeover: Sociocosmos Presence Package
Your LinkedIn Makeover: Sociocosmos Presence PackageSocioCosmos
 

Recently uploaded (20)

Call Girls In Andheri East Call 9167673311 Book Hot And Sexy Girls
Call Girls In Andheri East Call 9167673311 Book Hot And Sexy GirlsCall Girls In Andheri East Call 9167673311 Book Hot And Sexy Girls
Call Girls In Andheri East Call 9167673311 Book Hot And Sexy Girls
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Masudpur
Delhi  99530 vip 56974  Genuine Escort Service Call Girls in MasudpurDelhi  99530 vip 56974  Genuine Escort Service Call Girls in Masudpur
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Masudpur
 
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service 👖
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service  👖CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service  👖
CALL ON ➥8923113531 🔝Call Girls Takrohi Lucknow best Female service 👖
 
🔝9953056974 🔝Call Girls In Mehrauli Escort Service Delhi NCR
🔝9953056974 🔝Call Girls In Mehrauli  Escort Service Delhi NCR🔝9953056974 🔝Call Girls In Mehrauli  Escort Service Delhi NCR
🔝9953056974 🔝Call Girls In Mehrauli Escort Service Delhi NCR
 
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...
Top Astrologer, Kala ilam specialist in USA and Bangali Amil baba in Saudi Ar...
 
O9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking MenO9654467111 Call Girls In Dwarka Women Seeking Men
O9654467111 Call Girls In Dwarka Women Seeking Men
 
Call Girls In Gurgaon Dlf pHACE 2 Women Delhi ncr
Call Girls In Gurgaon Dlf pHACE 2 Women Delhi ncrCall Girls In Gurgaon Dlf pHACE 2 Women Delhi ncr
Call Girls In Gurgaon Dlf pHACE 2 Women Delhi ncr
 
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779
Night 7k Call Girls Noida New Ashok Nagar Escorts Call Me: 8448380779
 
定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一
定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一
定制(ENU毕业证书)英国爱丁堡龙比亚大学毕业证成绩单原版一比一
 
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...
IMPACT OF FISCAL POLICY AND MONETARY POLICY ON THE ECONOMIC GROWTH OF NIGERIA...
 
CALL ON ➥8923113531 🔝Call Girls Ashiyana Colony Lucknow best sexual service O...
CALL ON ➥8923113531 🔝Call Girls Ashiyana Colony Lucknow best sexual service O...CALL ON ➥8923113531 🔝Call Girls Ashiyana Colony Lucknow best sexual service O...
CALL ON ➥8923113531 🔝Call Girls Ashiyana Colony Lucknow best sexual service O...
 
Night 7k Call Girls Noida Sector 120 Call Me: 8448380779
Night 7k Call Girls Noida Sector 120 Call Me: 8448380779Night 7k Call Girls Noida Sector 120 Call Me: 8448380779
Night 7k Call Girls Noida Sector 120 Call Me: 8448380779
 
FULL ENJOY Call Girls In Mohammadpur (Delhi) Call Us 9953056974
FULL ENJOY Call Girls In Mohammadpur  (Delhi) Call Us 9953056974FULL ENJOY Call Girls In Mohammadpur  (Delhi) Call Us 9953056974
FULL ENJOY Call Girls In Mohammadpur (Delhi) Call Us 9953056974
 
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCRElite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
Elite Class ➥8448380779▻ Call Girls In Nizammuddin Delhi NCR
 
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...
Independent Escorts Lucknow 8923113531 WhatsApp luxurious locale in your city...
 
Website research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazineWebsite research Powerpoint for Bauer magazine
Website research Powerpoint for Bauer magazine
 
Elite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCR
Elite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCRElite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCR
Elite Class ➥8448380779▻ Call Girls In New Friends Colony Delhi NCR
 
Dubai Call Girls O528786472 Diabolic Call Girls In Dubai
Dubai Call Girls O528786472 Diabolic Call Girls In DubaiDubai Call Girls O528786472 Diabolic Call Girls In Dubai
Dubai Call Girls O528786472 Diabolic Call Girls In Dubai
 
Add more information to your upload Tip: Better titles and descriptions lead ...
Add more information to your upload Tip: Better titles and descriptions lead ...Add more information to your upload Tip: Better titles and descriptions lead ...
Add more information to your upload Tip: Better titles and descriptions lead ...
 
Your LinkedIn Makeover: Sociocosmos Presence Package
Your LinkedIn Makeover: Sociocosmos Presence PackageYour LinkedIn Makeover: Sociocosmos Presence Package
Your LinkedIn Makeover: Sociocosmos Presence Package
 

NMX 2014 - Blogging - Schema for Bloggers: Structured Data, 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!