SlideShare a Scribd company logo
1 of 32
@timcannon
#SESATL
Overview: De-Mystifying Mobile Technical Architecture
• 2014 mobile trends
• Defining the popular methods for mobile enabled websites
• What the does Google say about mobile sites?
• Advantages of the most popular methods
• Frameworks to consider
• SEO considerations
• Performance considerations
@timcannon
#SESATL
@timcannon
#SESATL
@timcannon
#SESATL
Mobile Usage as % of Web Usage, by Region, 5/14
@timcannon
#SESATL
Global PC (Desktop / Notebook) and Tablet Shipments
by Quarter | Q1:95 – Q4:13
@timcannon
#SESATL
Global Users of TVs vs. Mobile Phones vs.
Smartphones vs. PCs vs. Tablets, 2013
@timcannon
#SESATL
Smartphones and tablets together command
1/3rd of organic search traffic
+ =
Source: Brightedge Mobile Share Report – 6/14
@timcannon
#SESATL
On average, 62 percent of organic searches
show different results depending on
whether the search was performed on a
desktop or smartphone
@timcannon
#SESATL
Carefully decide which mobile approach is right for you &
make sure you implement it correctly.
72%
% of mobile site configuration errors
dedicated mobile dynamic responsive
30%
@timcannon
#SESATL
What are the most popular methods to enable your website
for mobile?
Dedicated Mobile - Created specifically to provide an optimized design to
mobile devices. Usually this a completely different set of source code
than the main website and has its own domain/URL.
Responsive - Creates a fluid layout that changes and responds to
different screen and device sizes. The key elements are
incorporating CSS3,media queries and fluid grids to accomplish this
goal.
Adaptive/Dynamic - This one gets thrown around a lot and
seems to mean something different, depending on who you
ask. For my purposes today I am defining it as utilizing
dynamic loading using something like server side detection to
serve up different HTML based on device type or platform
type.
@timcannon
#SESATL
What do search engines say about mobile & SEO?
1) Sites that use responsive web design, i.e. sites that serve all devices
on the same set of URLs, with each URL serving the same HTML to all
devices and using just CSS to change how the page is rendered on the
device.
2) Sites that dynamically serve all devices on the same set
of URLs, but each URL serves different HTML (and CSS)
depending on whether the user agent is a desktop or a
mobile device.
3) Sites that have separate mobile and desktop URLs.
Google Officially Supports
@timcannon
#SESATL
What do search engines say about mobile & SEO?
@timcannon
#SESATL
What is the best option for you to mobile enable your website?
Every company is different therefore everyone’s situation is not the same
@timcannon
#SESATL
What is the best option for you to mobile enable your website?
Advantages of Dedicated Mobile
1) Speed – One common argument for building a dedicated mobile
website is that it will be faster than a responsive one.
2) User Experience – If you have a dedicated mobile website you can
completely tailor and customize the user experience to mobile visitors.
3) Cost – A mobile website will not require you to essentially perform a
complete redesign like a responsive site often does therefore costing
you less money.
@timcannon
#SESATL
What are some of the advantages of each mobile approach?
Advantages of Responsive Design
1) Future friendly/Scalable – As different screen sizes and devices
come out, responsive is well suited to accommodate these.
2) SEO benefits – Like we mentioned earlier this is Google’s preferred
method for SEO, but I think it really boils down to having a single URL
which makes everything around SEO much easier.
3) Maintenance – Responsive design allows you to build one website
with a single set of source code which means it is much easier to
manage and maintain.
@timcannon
#SESATL
Looking at responsive frameworks?
Common arguments against…
1) Designer can do a better job
2) Code bloat which leads to slower loading sites
3) Everything looks the same
@timcannon
#SESATL
Looking at responsive frameworks?
Common arguments for…
1) Browser compatibility & testing is easier
@timcannon
#SESATL
Looking at responsive frameworks?
Common arguments for…
2) Customizable
@timcannon
#SESATL
Looking at responsive frameworks?
Common arguments for…
1) Browser compatibility & testing is easier
2) Customizable
3) Save time, therefore save money
@timcannon
#SESATL
@timcannon
#SESATL
Bootstrap versus Foundation
Bootstrap
• Open source framework created and managed by Twitter that has
become the most popular framework in terms of responsive websites
using it
• Fluid, grid based system that pretty much has everything you will
ever need for front end development
• Browser support, documentation and development community is
very robust to support any project
@timcannon
#SESATL
Bootstrap versus Foundation
Foundation
• Front-end framework created by Zurb which also uses a fluid, grid
based system and is completely free as well
• Minimalistic approach to frameworks by providing you the basics or
“laying the foundation”
• Browser support, documentation and development community is not
as robust as Bootstrap
@timcannon
#SESATL
SEO Considerations with Responsive Design
• Indexing/Crawlability
• Architecture
• UX/UI
@timcannon
#SESATL
SEO Considerations with Responsive Design
Indexing/Crawlability
• Depending on what approach you take with responsive
design this could be very simple or more complicated.
• Use the Vary header response to tell Google that this
page’s content can “vary” or is different depending on the
type of device/platform that accesses it.
• If your site uses AJAX and more advanced javascript
implement thins like the _escaped_fragement and
pushState to avoid issues.
@timcannon
#SESATL
SEO Considerations with Responsive Design
Architecture
• When performing keyword research identify “mobile
specific” keywords so you include those in your content
and optimization strategy.
• A true native responsive design approach could make
this more difficult, so look at other hybrid approaches like
dynamic serving to accomplish this.
-
@timcannon
#SESATL
SEO Considerations with Responsive Design
UX/UI
In a recent study that included responsive sites like Starbucks and
Engadget. 69% of the sites did not have an acceptable load time.
Source: Trilibis (April 2014)
@timcannon
#SESATL
SEO Considerations with Responsive Design
UX/UI
• Make performance enhancements a priority with your
project since that impacts both user experience &
rankings.
• Remove “app” landing pages after your launch and
replace with “smart” banners if you still want to drive
users to your apps.
@timcannon
#SESATL
Performance Considerations with Responsive Design
Google has specifically mentioned that page load times and user
experience are two variables they are already using or will be using to
rank the mobile web.
@timcannon
#SESATL
• Images - Optimizing your images can be something as
simple as using a better compression method and
defining your image sizes to more complex methods like
SVG vector images or something like Picturefill 2.0.
• TTFB (Time to First Load) - The two most important
things to look at for that are your TTFB (Time to First
Byte) and Critical Render Path. Shoot for under 3
seconds to display everything in the initial viewport.
Performance Considerations with Responsive Design
@timcannon
#SESATL
• Compression/Zipping - An easy performance
improvement you can make is enabling file compression
on your server and zipping up all your css and javascript
files. (GZIP)
• Asynchronous Loading - Separate your javascript from
the rest of the page so you don’t “block” other elements
on the page from loading.
Performance Considerations with Responsive Design
@timcannon
#SESATL
• Conditional Loading - valuable when you have a lot of
content do display to your mobile users, but don’t want to
display or load it until they “need” it.
• Server Side Detection – Use this to determine exactly
what the user needs based on their platform/device and
only serve them what they need based on that info.
Performance Considerations with Responsive Design
@timcannon
#SESATL
For a list of tools & other resources used in the
presentation go to www.healthitjobs.com/sesatl.aspx

More Related Content

What's hot

Mobile Email User Experience Strategies
Mobile Email User Experience StrategiesMobile Email User Experience Strategies
Mobile Email User Experience StrategiesAnushri Thanedar
 
Responsive website
Responsive websiteResponsive website
Responsive websiteborjanshoes
 
Mobile Best Practices
Mobile Best PracticesMobile Best Practices
Mobile Best PracticesPauly Ting
 
Raja Saggi business show Nov 2018
Raja Saggi business show Nov 2018Raja Saggi business show Nov 2018
Raja Saggi business show Nov 2018Raja Saggi
 
Responsive Websites: Are They A Trend Or Are They Here To Stay
Responsive Websites:  Are They A Trend Or Are They Here To Stay Responsive Websites:  Are They A Trend Or Are They Here To Stay
Responsive Websites: Are They A Trend Or Are They Here To Stay Fast Track Marketing
 
Desktop on Tablet UX Audit
Desktop on Tablet UX AuditDesktop on Tablet UX Audit
Desktop on Tablet UX AuditTim Broadwater
 
Existing Website UX Audit
Existing Website UX AuditExisting Website UX Audit
Existing Website UX AuditTim Broadwater
 
Cracking the code: Keys to Email Creative Success
Cracking the code:   Keys to Email Creative SuccessCracking the code:   Keys to Email Creative Success
Cracking the code: Keys to Email Creative SuccessAlex Williams
 
Product Management Intern Assignment - 1
Product Management Intern Assignment - 1Product Management Intern Assignment - 1
Product Management Intern Assignment - 1Rajeev Soni
 
Hard-Won Lessons In Responsive Email Design - SmashingConf Oxford 2014
Hard-Won Lessons In Responsive Email Design - SmashingConf Oxford 2014Hard-Won Lessons In Responsive Email Design - SmashingConf Oxford 2014
Hard-Won Lessons In Responsive Email Design - SmashingConf Oxford 2014Fabio Carneiro
 
Responsive Email Design
Responsive Email DesignResponsive Email Design
Responsive Email DesignBrian Graves
 
Google Mobile Sites | We Got Certified so You Don't Have To
Google Mobile Sites | We Got Certified so You Don't Have ToGoogle Mobile Sites | We Got Certified so You Don't Have To
Google Mobile Sites | We Got Certified so You Don't Have ToPeyton Tata
 
Apps for good - Review It
Apps for good - Review ItApps for good - Review It
Apps for good - Review ItFozzyfoster
 
Target Marketing Magazine Webinar - Keys To Success On The Mobile Web and How...
Target Marketing Magazine Webinar - Keys To Success On The Mobile Web and How...Target Marketing Magazine Webinar - Keys To Success On The Mobile Web and How...
Target Marketing Magazine Webinar - Keys To Success On The Mobile Web and How...Greg Hickman
 
10 Tips To Drive More Traffic To Your Mobile Site
10 Tips To Drive More Traffic To Your Mobile Site10 Tips To Drive More Traffic To Your Mobile Site
10 Tips To Drive More Traffic To Your Mobile SiteMobyLabs
 

What's hot (16)

Mobile Email User Experience Strategies
Mobile Email User Experience StrategiesMobile Email User Experience Strategies
Mobile Email User Experience Strategies
 
Responsive website
Responsive websiteResponsive website
Responsive website
 
Mobile Best Practices
Mobile Best PracticesMobile Best Practices
Mobile Best Practices
 
Raja Saggi business show Nov 2018
Raja Saggi business show Nov 2018Raja Saggi business show Nov 2018
Raja Saggi business show Nov 2018
 
Responsive Websites: Are They A Trend Or Are They Here To Stay
Responsive Websites:  Are They A Trend Or Are They Here To Stay Responsive Websites:  Are They A Trend Or Are They Here To Stay
Responsive Websites: Are They A Trend Or Are They Here To Stay
 
Desktop on Tablet UX Audit
Desktop on Tablet UX AuditDesktop on Tablet UX Audit
Desktop on Tablet UX Audit
 
Existing Website UX Audit
Existing Website UX AuditExisting Website UX Audit
Existing Website UX Audit
 
Cracking the code: Keys to Email Creative Success
Cracking the code:   Keys to Email Creative SuccessCracking the code:   Keys to Email Creative Success
Cracking the code: Keys to Email Creative Success
 
Product Management Intern Assignment - 1
Product Management Intern Assignment - 1Product Management Intern Assignment - 1
Product Management Intern Assignment - 1
 
Hard-Won Lessons In Responsive Email Design - SmashingConf Oxford 2014
Hard-Won Lessons In Responsive Email Design - SmashingConf Oxford 2014Hard-Won Lessons In Responsive Email Design - SmashingConf Oxford 2014
Hard-Won Lessons In Responsive Email Design - SmashingConf Oxford 2014
 
Best Practices for Mobile Web Design
Best Practices for Mobile Web DesignBest Practices for Mobile Web Design
Best Practices for Mobile Web Design
 
Responsive Email Design
Responsive Email DesignResponsive Email Design
Responsive Email Design
 
Google Mobile Sites | We Got Certified so You Don't Have To
Google Mobile Sites | We Got Certified so You Don't Have ToGoogle Mobile Sites | We Got Certified so You Don't Have To
Google Mobile Sites | We Got Certified so You Don't Have To
 
Apps for good - Review It
Apps for good - Review ItApps for good - Review It
Apps for good - Review It
 
Target Marketing Magazine Webinar - Keys To Success On The Mobile Web and How...
Target Marketing Magazine Webinar - Keys To Success On The Mobile Web and How...Target Marketing Magazine Webinar - Keys To Success On The Mobile Web and How...
Target Marketing Magazine Webinar - Keys To Success On The Mobile Web and How...
 
10 Tips To Drive More Traffic To Your Mobile Site
10 Tips To Drive More Traffic To Your Mobile Site10 Tips To Drive More Traffic To Your Mobile Site
10 Tips To Drive More Traffic To Your Mobile Site
 

Similar to Demystifying Mobile SEO - 2014 Search Engine Strategies Atlanta Session

Mobile SEO (English Version)
Mobile SEO (English Version)Mobile SEO (English Version)
Mobile SEO (English Version)ssuserd60633
 
SES Berlin OMCap 2013
SES Berlin OMCap 2013SES Berlin OMCap 2013
SES Berlin OMCap 2013Rachel Pasqua
 
Big Brands, Mobile SEO and You by John Shehata - #SEJSummit New York City
Big Brands, Mobile SEO and You by John Shehata - #SEJSummit New York CityBig Brands, Mobile SEO and You by John Shehata - #SEJSummit New York City
Big Brands, Mobile SEO and You by John Shehata - #SEJSummit New York CitySearch Engine Journal
 
Responsive Design pros and cons
Responsive Design pros and consResponsive Design pros and cons
Responsive Design pros and consmbieschke
 
7 secrets of performance oriented front end development services
7 secrets of performance oriented front end development services7 secrets of performance oriented front end development services
7 secrets of performance oriented front end development servicesKaty Slemon
 
Best practices to optimize code and build robust and scalable web applications
Best practices to optimize code and build robust and scalable web applicationsBest practices to optimize code and build robust and scalable web applications
Best practices to optimize code and build robust and scalable web applicationsdheerajpiet
 
Improving frontend performance
Improving frontend performanceImproving frontend performance
Improving frontend performanceSagar Desarda
 
Google Mobile Algorithm Change
Google Mobile Algorithm ChangeGoogle Mobile Algorithm Change
Google Mobile Algorithm ChangeBrian McDowell
 
Conductor-Webinar-Google-Mobile-Algorithm-Change
Conductor-Webinar-Google-Mobile-Algorithm-ChangeConductor-Webinar-Google-Mobile-Algorithm-Change
Conductor-Webinar-Google-Mobile-Algorithm-ChangeSheridan Orr
 
Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.Rachel Anderson
 
Are you there Page Experience? It's me, DevTools
Are you there Page Experience? It's me, DevToolsAre you there Page Experience? It's me, DevTools
Are you there Page Experience? It's me, DevToolsJamie Indigo
 
Optimizing site performance - Agility2013
Optimizing site performance - Agility2013Optimizing site performance - Agility2013
Optimizing site performance - Agility2013Ensighten
 
7 Section Website Assessment
7 Section Website Assessment 7 Section Website Assessment
7 Section Website Assessment Corey84
 
Responsive vs. Adaptive
Responsive vs. AdaptiveResponsive vs. Adaptive
Responsive vs. AdaptiveBenu Aggarwal
 
C3 2014 Main Stage John Shehata
C3 2014 Main Stage John ShehataC3 2014 Main Stage John Shehata
C3 2014 Main Stage John ShehataConductor
 

Similar to Demystifying Mobile SEO - 2014 Search Engine Strategies Atlanta Session (20)

Mobile SEO (English Version)
Mobile SEO (English Version)Mobile SEO (English Version)
Mobile SEO (English Version)
 
SES Berlin OMCap 2013
SES Berlin OMCap 2013SES Berlin OMCap 2013
SES Berlin OMCap 2013
 
Big Brands, Mobile SEO and You by John Shehata - #SEJSummit New York City
Big Brands, Mobile SEO and You by John Shehata - #SEJSummit New York CityBig Brands, Mobile SEO and You by John Shehata - #SEJSummit New York City
Big Brands, Mobile SEO and You by John Shehata - #SEJSummit New York City
 
Responsive Design pros and cons
Responsive Design pros and consResponsive Design pros and cons
Responsive Design pros and cons
 
7 secrets of performance oriented front end development services
7 secrets of performance oriented front end development services7 secrets of performance oriented front end development services
7 secrets of performance oriented front end development services
 
Best practices to optimize code and build robust and scalable web applications
Best practices to optimize code and build robust and scalable web applicationsBest practices to optimize code and build robust and scalable web applications
Best practices to optimize code and build robust and scalable web applications
 
RWD - Bootstrap
RWD - BootstrapRWD - Bootstrap
RWD - Bootstrap
 
Improving frontend performance
Improving frontend performanceImproving frontend performance
Improving frontend performance
 
Google Mobile Algorithm Change
Google Mobile Algorithm ChangeGoogle Mobile Algorithm Change
Google Mobile Algorithm Change
 
Conductor-Webinar-Google-Mobile-Algorithm-Change
Conductor-Webinar-Google-Mobile-Algorithm-ChangeConductor-Webinar-Google-Mobile-Algorithm-Change
Conductor-Webinar-Google-Mobile-Algorithm-Change
 
Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.Are you there Page Experience? It's Me, DevTools.
Are you there Page Experience? It's Me, DevTools.
 
Are you there Page Experience? It's me, DevTools
Are you there Page Experience? It's me, DevToolsAre you there Page Experience? It's me, DevTools
Are you there Page Experience? It's me, DevTools
 
Optimizing site performance - Agility2013
Optimizing site performance - Agility2013Optimizing site performance - Agility2013
Optimizing site performance - Agility2013
 
7 Section Website Assessment
7 Section Website Assessment 7 Section Website Assessment
7 Section Website Assessment
 
Going mobile
Going mobileGoing mobile
Going mobile
 
Going mobile
Going mobileGoing mobile
Going mobile
 
Responsive vs. Adaptive
Responsive vs. AdaptiveResponsive vs. Adaptive
Responsive vs. Adaptive
 
C3 2014 Main Stage John Shehata
C3 2014 Main Stage John ShehataC3 2014 Main Stage John Shehata
C3 2014 Main Stage John Shehata
 
Modern Web Applications
Modern Web ApplicationsModern Web Applications
Modern Web Applications
 
Mobile seo
Mobile seoMobile seo
Mobile seo
 

Recently uploaded

The+State+of+Careers+In+Retention+Marketing-2.pdf
The+State+of+Careers+In+Retention+Marketing-2.pdfThe+State+of+Careers+In+Retention+Marketing-2.pdf
The+State+of+Careers+In+Retention+Marketing-2.pdfSocial Samosa
 
What is Google Search Console and What is it provide?
What is Google Search Console and What is it provide?What is Google Search Console and What is it provide?
What is Google Search Console and What is it provide?riteshhsociall
 
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort ServiceDelhi Call girls
 
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO Success
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO SuccessBrighton SEO April 2024 - The Good, the Bad & the Ugly of SEO Success
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO SuccessVarn
 
BLOOM_April2024. Balmer Lawrie Online Monthly Bulletin
BLOOM_April2024. Balmer Lawrie Online Monthly BulletinBLOOM_April2024. Balmer Lawrie Online Monthly Bulletin
BLOOM_April2024. Balmer Lawrie Online Monthly BulletinBalmerLawrie
 
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptx
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptxDigital-Marketing-Into-by-Zoraiz-Ahmad.pptx
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptxZACGaming
 
Factors-Influencing-Branding-Strategies.pptx
Factors-Influencing-Branding-Strategies.pptxFactors-Influencing-Branding-Strategies.pptx
Factors-Influencing-Branding-Strategies.pptxVikasTiwari846641
 
How to utilize calculated properties in your HubSpot setups
How to utilize calculated properties in your HubSpot setupsHow to utilize calculated properties in your HubSpot setups
How to utilize calculated properties in your HubSpot setupsssuser4571da
 
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesGoogle 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesSearch Engine Journal
 
Branding strategies of new company .pptx
Branding strategies of new company .pptxBranding strategies of new company .pptx
Branding strategies of new company .pptxVikasTiwari846641
 
Unraveling the Mystery of the Hinterkaifeck Murders.pptx
Unraveling the Mystery of the Hinterkaifeck Murders.pptxUnraveling the Mystery of the Hinterkaifeck Murders.pptx
Unraveling the Mystery of the Hinterkaifeck Murders.pptxelizabethella096
 
Situation Analysis | Management Company.
Situation Analysis | Management Company.Situation Analysis | Management Company.
Situation Analysis | Management Company.DanielaQuiroz63
 
Unraveling the Mystery of The Circleville Letters.pptx
Unraveling the Mystery of The Circleville Letters.pptxUnraveling the Mystery of The Circleville Letters.pptx
Unraveling the Mystery of The Circleville Letters.pptxelizabethella096
 
CALL ON ➥8923113531 🔝Call Girls Hazratganj Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Hazratganj Lucknow best sexual service OnlineCALL ON ➥8923113531 🔝Call Girls Hazratganj Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Hazratganj Lucknow best sexual service Onlineanilsa9823
 
Social media, ppt. Features, characteristics
Social media, ppt. Features, characteristicsSocial media, ppt. Features, characteristics
Social media, ppt. Features, characteristicswasim792942
 

Recently uploaded (20)

The+State+of+Careers+In+Retention+Marketing-2.pdf
The+State+of+Careers+In+Retention+Marketing-2.pdfThe+State+of+Careers+In+Retention+Marketing-2.pdf
The+State+of+Careers+In+Retention+Marketing-2.pdf
 
What is Google Search Console and What is it provide?
What is Google Search Console and What is it provide?What is Google Search Console and What is it provide?
What is Google Search Console and What is it provide?
 
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort ServiceBDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
BDSM⚡Call Girls in Sector 39 Noida Escorts Escorts >༒8448380779 Escort Service
 
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO Success
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO SuccessBrighton SEO April 2024 - The Good, the Bad & the Ugly of SEO Success
Brighton SEO April 2024 - The Good, the Bad & the Ugly of SEO Success
 
BLOOM_April2024. Balmer Lawrie Online Monthly Bulletin
BLOOM_April2024. Balmer Lawrie Online Monthly BulletinBLOOM_April2024. Balmer Lawrie Online Monthly Bulletin
BLOOM_April2024. Balmer Lawrie Online Monthly Bulletin
 
BUY GMAIL ACCOUNTS PVA USA IP INDIAN IP GMAIL
BUY GMAIL ACCOUNTS PVA USA IP INDIAN IP GMAILBUY GMAIL ACCOUNTS PVA USA IP INDIAN IP GMAIL
BUY GMAIL ACCOUNTS PVA USA IP INDIAN IP GMAIL
 
Foundation First - Why Your Website and Content Matters - David Pisarek
Foundation First - Why Your Website and Content Matters - David PisarekFoundation First - Why Your Website and Content Matters - David Pisarek
Foundation First - Why Your Website and Content Matters - David Pisarek
 
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptx
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptxDigital-Marketing-Into-by-Zoraiz-Ahmad.pptx
Digital-Marketing-Into-by-Zoraiz-Ahmad.pptx
 
The Future of Brands on LinkedIn - Alison Kaltman
The Future of Brands on LinkedIn - Alison KaltmanThe Future of Brands on LinkedIn - Alison Kaltman
The Future of Brands on LinkedIn - Alison Kaltman
 
Factors-Influencing-Branding-Strategies.pptx
Factors-Influencing-Branding-Strategies.pptxFactors-Influencing-Branding-Strategies.pptx
Factors-Influencing-Branding-Strategies.pptx
 
How to utilize calculated properties in your HubSpot setups
How to utilize calculated properties in your HubSpot setupsHow to utilize calculated properties in your HubSpot setups
How to utilize calculated properties in your HubSpot setups
 
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best StrategiesGoogle 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
Google 3rd-Party Cookie Deprecation [Update] + 5 Best Strategies
 
Branding strategies of new company .pptx
Branding strategies of new company .pptxBranding strategies of new company .pptx
Branding strategies of new company .pptx
 
Unraveling the Mystery of the Hinterkaifeck Murders.pptx
Unraveling the Mystery of the Hinterkaifeck Murders.pptxUnraveling the Mystery of the Hinterkaifeck Murders.pptx
Unraveling the Mystery of the Hinterkaifeck Murders.pptx
 
Creator Influencer Strategy Master Class - Corinne Rose Guirgis
Creator Influencer Strategy Master Class - Corinne Rose GuirgisCreator Influencer Strategy Master Class - Corinne Rose Guirgis
Creator Influencer Strategy Master Class - Corinne Rose Guirgis
 
Situation Analysis | Management Company.
Situation Analysis | Management Company.Situation Analysis | Management Company.
Situation Analysis | Management Company.
 
Unraveling the Mystery of The Circleville Letters.pptx
Unraveling the Mystery of The Circleville Letters.pptxUnraveling the Mystery of The Circleville Letters.pptx
Unraveling the Mystery of The Circleville Letters.pptx
 
CALL ON ➥8923113531 🔝Call Girls Hazratganj Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Hazratganj Lucknow best sexual service OnlineCALL ON ➥8923113531 🔝Call Girls Hazratganj Lucknow best sexual service Online
CALL ON ➥8923113531 🔝Call Girls Hazratganj Lucknow best sexual service Online
 
Turn Digital Reputation Threats into Offense Tactics - Daniel Lemin
Turn Digital Reputation Threats into Offense Tactics - Daniel LeminTurn Digital Reputation Threats into Offense Tactics - Daniel Lemin
Turn Digital Reputation Threats into Offense Tactics - Daniel Lemin
 
Social media, ppt. Features, characteristics
Social media, ppt. Features, characteristicsSocial media, ppt. Features, characteristics
Social media, ppt. Features, characteristics
 

Demystifying Mobile SEO - 2014 Search Engine Strategies Atlanta Session

  • 1. @timcannon #SESATL Overview: De-Mystifying Mobile Technical Architecture • 2014 mobile trends • Defining the popular methods for mobile enabled websites • What the does Google say about mobile sites? • Advantages of the most popular methods • Frameworks to consider • SEO considerations • Performance considerations
  • 4. @timcannon #SESATL Mobile Usage as % of Web Usage, by Region, 5/14
  • 5. @timcannon #SESATL Global PC (Desktop / Notebook) and Tablet Shipments by Quarter | Q1:95 – Q4:13
  • 6. @timcannon #SESATL Global Users of TVs vs. Mobile Phones vs. Smartphones vs. PCs vs. Tablets, 2013
  • 7. @timcannon #SESATL Smartphones and tablets together command 1/3rd of organic search traffic + = Source: Brightedge Mobile Share Report – 6/14
  • 8. @timcannon #SESATL On average, 62 percent of organic searches show different results depending on whether the search was performed on a desktop or smartphone
  • 9. @timcannon #SESATL Carefully decide which mobile approach is right for you & make sure you implement it correctly. 72% % of mobile site configuration errors dedicated mobile dynamic responsive 30%
  • 10. @timcannon #SESATL What are the most popular methods to enable your website for mobile? Dedicated Mobile - Created specifically to provide an optimized design to mobile devices. Usually this a completely different set of source code than the main website and has its own domain/URL. Responsive - Creates a fluid layout that changes and responds to different screen and device sizes. The key elements are incorporating CSS3,media queries and fluid grids to accomplish this goal. Adaptive/Dynamic - This one gets thrown around a lot and seems to mean something different, depending on who you ask. For my purposes today I am defining it as utilizing dynamic loading using something like server side detection to serve up different HTML based on device type or platform type.
  • 11. @timcannon #SESATL What do search engines say about mobile & SEO? 1) Sites that use responsive web design, i.e. sites that serve all devices on the same set of URLs, with each URL serving the same HTML to all devices and using just CSS to change how the page is rendered on the device. 2) Sites that dynamically serve all devices on the same set of URLs, but each URL serves different HTML (and CSS) depending on whether the user agent is a desktop or a mobile device. 3) Sites that have separate mobile and desktop URLs. Google Officially Supports
  • 12. @timcannon #SESATL What do search engines say about mobile & SEO?
  • 13. @timcannon #SESATL What is the best option for you to mobile enable your website? Every company is different therefore everyone’s situation is not the same
  • 14. @timcannon #SESATL What is the best option for you to mobile enable your website? Advantages of Dedicated Mobile 1) Speed – One common argument for building a dedicated mobile website is that it will be faster than a responsive one. 2) User Experience – If you have a dedicated mobile website you can completely tailor and customize the user experience to mobile visitors. 3) Cost – A mobile website will not require you to essentially perform a complete redesign like a responsive site often does therefore costing you less money.
  • 15. @timcannon #SESATL What are some of the advantages of each mobile approach? Advantages of Responsive Design 1) Future friendly/Scalable – As different screen sizes and devices come out, responsive is well suited to accommodate these. 2) SEO benefits – Like we mentioned earlier this is Google’s preferred method for SEO, but I think it really boils down to having a single URL which makes everything around SEO much easier. 3) Maintenance – Responsive design allows you to build one website with a single set of source code which means it is much easier to manage and maintain.
  • 16. @timcannon #SESATL Looking at responsive frameworks? Common arguments against… 1) Designer can do a better job 2) Code bloat which leads to slower loading sites 3) Everything looks the same
  • 17. @timcannon #SESATL Looking at responsive frameworks? Common arguments for… 1) Browser compatibility & testing is easier
  • 18. @timcannon #SESATL Looking at responsive frameworks? Common arguments for… 2) Customizable
  • 19. @timcannon #SESATL Looking at responsive frameworks? Common arguments for… 1) Browser compatibility & testing is easier 2) Customizable 3) Save time, therefore save money
  • 21. @timcannon #SESATL Bootstrap versus Foundation Bootstrap • Open source framework created and managed by Twitter that has become the most popular framework in terms of responsive websites using it • Fluid, grid based system that pretty much has everything you will ever need for front end development • Browser support, documentation and development community is very robust to support any project
  • 22. @timcannon #SESATL Bootstrap versus Foundation Foundation • Front-end framework created by Zurb which also uses a fluid, grid based system and is completely free as well • Minimalistic approach to frameworks by providing you the basics or “laying the foundation” • Browser support, documentation and development community is not as robust as Bootstrap
  • 23. @timcannon #SESATL SEO Considerations with Responsive Design • Indexing/Crawlability • Architecture • UX/UI
  • 24. @timcannon #SESATL SEO Considerations with Responsive Design Indexing/Crawlability • Depending on what approach you take with responsive design this could be very simple or more complicated. • Use the Vary header response to tell Google that this page’s content can “vary” or is different depending on the type of device/platform that accesses it. • If your site uses AJAX and more advanced javascript implement thins like the _escaped_fragement and pushState to avoid issues.
  • 25. @timcannon #SESATL SEO Considerations with Responsive Design Architecture • When performing keyword research identify “mobile specific” keywords so you include those in your content and optimization strategy. • A true native responsive design approach could make this more difficult, so look at other hybrid approaches like dynamic serving to accomplish this. -
  • 26. @timcannon #SESATL SEO Considerations with Responsive Design UX/UI In a recent study that included responsive sites like Starbucks and Engadget. 69% of the sites did not have an acceptable load time. Source: Trilibis (April 2014)
  • 27. @timcannon #SESATL SEO Considerations with Responsive Design UX/UI • Make performance enhancements a priority with your project since that impacts both user experience & rankings. • Remove “app” landing pages after your launch and replace with “smart” banners if you still want to drive users to your apps.
  • 28. @timcannon #SESATL Performance Considerations with Responsive Design Google has specifically mentioned that page load times and user experience are two variables they are already using or will be using to rank the mobile web.
  • 29. @timcannon #SESATL • Images - Optimizing your images can be something as simple as using a better compression method and defining your image sizes to more complex methods like SVG vector images or something like Picturefill 2.0. • TTFB (Time to First Load) - The two most important things to look at for that are your TTFB (Time to First Byte) and Critical Render Path. Shoot for under 3 seconds to display everything in the initial viewport. Performance Considerations with Responsive Design
  • 30. @timcannon #SESATL • Compression/Zipping - An easy performance improvement you can make is enabling file compression on your server and zipping up all your css and javascript files. (GZIP) • Asynchronous Loading - Separate your javascript from the rest of the page so you don’t “block” other elements on the page from loading. Performance Considerations with Responsive Design
  • 31. @timcannon #SESATL • Conditional Loading - valuable when you have a lot of content do display to your mobile users, but don’t want to display or load it until they “need” it. • Server Side Detection – Use this to determine exactly what the user needs based on their platform/device and only serve them what they need based on that info. Performance Considerations with Responsive Design
  • 32. @timcannon #SESATL For a list of tools & other resources used in the presentation go to www.healthitjobs.com/sesatl.aspx