SlideShare a Scribd company logo
@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

PDF
Principles of mobile site design
PDF
Multi screen-moblie-whitepaper research-studies
PDF
Principles of Mobile Site Design: Delight Users and Driver Conversions
PDF
PPTX
Responsive Email Design
PDF
Filter
PPTX
Modular email templates
PPT
Mobile email - chasing context
Principles of mobile site design
Multi screen-moblie-whitepaper research-studies
Principles of Mobile Site Design: Delight Users and Driver Conversions
Responsive Email Design
Filter
Modular email templates
Mobile email - chasing context

What's hot (16)

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

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

PPTX
Mobile SEO (English Version)
PPTX
SES Berlin OMCap 2013
PPTX
Big Brands, Mobile SEO and You by John Shehata - #SEJSummit New York City
PPTX
Responsive Design pros and cons
PDF
7 secrets of performance oriented front end development services
DOCX
Best practices to optimize code and build robust and scalable web applications
PPTX
RWD - Bootstrap
PDF
Improving frontend performance
PDF
Google Mobile Algorithm Change
PDF
Conductor-Webinar-Google-Mobile-Algorithm-Change
PDF
Are you there Page Experience? It's me, DevTools
PDF
Are you there Page Experience? It's Me, DevTools.
PDF
Optimizing site performance - Agility2013
PPTX
7 Section Website Assessment
PPTX
Going mobile
PPTX
Going mobile
PDF
Responsive vs. Adaptive
PDF
C3 2014 Main Stage John Shehata
PDF
Modern Web Applications
ODT
Mobile seo
Mobile SEO (English Version)
SES Berlin OMCap 2013
Big Brands, Mobile SEO and You by John Shehata - #SEJSummit New York City
Responsive Design pros and cons
7 secrets of performance oriented front end development services
Best practices to optimize code and build robust and scalable web applications
RWD - Bootstrap
Improving frontend performance
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.
Optimizing site performance - Agility2013
7 Section Website Assessment
Going mobile
Going mobile
Responsive vs. Adaptive
C3 2014 Main Stage John Shehata
Modern Web Applications
Mobile seo
Ad

Recently uploaded (20)

PDF
Modernizing IT for the age of AI - Jason Aloia, Freshworks
PDF
PDF
Hidden gems in Microsoft ads with Navah Hopkins
PDF
20K Btc Enabled Cash App Accounts – Safe, Fast, Verified.pdf
PDF
AFCAT Syllabus 2026 Guide by Best Defence Academy in Lucknow.pdf
PDF
Unit 1 -2 THE 4 As of RURAL MARKETING MIX.pdf
PPTX
Tea and different types of tea in India
PDF
How the Minnesota Vikings Used Community to Drive 170% Growth and Acquire 34K...
PDF
E_Book_Customer_Relation_Management_0.pdf
PPTX
Sumit Saxena IIM J Project Market segmentation.pptx
PDF
Digital Marketing in the Age of AI: What CEOs Need to Know - Jennifer Apy, Ch...
PPTX
Fixing-AI-Hallucinations-The-NeuroRanktm-Approach.pptx
PPTX
Mastering eCommerce SEO: Strategies to Boost Traffic and Maximize Conversions
PDF
Future Retail Disruption Trends and Observations
PPTX
Ipsos+Protocols+Playbook+V1.2+(DEC2024)+final+IntClientUseOnly.pptx
PPTX
Your score increases as you pick a category, fill out a long description and ...
PDF
Proven AI Visibility: From SEO Strategy To GEO Tactics
PDF
Prove and Prioritize Profitability in Every Marketing Campaign - Zach Sherrod...
PPTX
Amazon - STRATEGIC.......................pptx
PDF
Digital Marketing Agency in Thrissur with Proven Strategies for Local Growth
Modernizing IT for the age of AI - Jason Aloia, Freshworks
Hidden gems in Microsoft ads with Navah Hopkins
20K Btc Enabled Cash App Accounts – Safe, Fast, Verified.pdf
AFCAT Syllabus 2026 Guide by Best Defence Academy in Lucknow.pdf
Unit 1 -2 THE 4 As of RURAL MARKETING MIX.pdf
Tea and different types of tea in India
How the Minnesota Vikings Used Community to Drive 170% Growth and Acquire 34K...
E_Book_Customer_Relation_Management_0.pdf
Sumit Saxena IIM J Project Market segmentation.pptx
Digital Marketing in the Age of AI: What CEOs Need to Know - Jennifer Apy, Ch...
Fixing-AI-Hallucinations-The-NeuroRanktm-Approach.pptx
Mastering eCommerce SEO: Strategies to Boost Traffic and Maximize Conversions
Future Retail Disruption Trends and Observations
Ipsos+Protocols+Playbook+V1.2+(DEC2024)+final+IntClientUseOnly.pptx
Your score increases as you pick a category, fill out a long description and ...
Proven AI Visibility: From SEO Strategy To GEO Tactics
Prove and Prioritize Profitability in Every Marketing Campaign - Zach Sherrod...
Amazon - STRATEGIC.......................pptx
Digital Marketing Agency in Thrissur with Proven Strategies for Local Growth

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