57
Is Responsive Web Design Right for Your Business? #RWDwebinar | July 30th, 2013 +

Webinar: Is Responsive Web Design Right for Your Business?

  • Upload
    mobify

  • View
    790

  • Download
    0

Embed Size (px)

DESCRIPTION

Optimizing the user experience for mobile devices is no longer a luxury—it's a must. Businesses have the option of building dedicated mobile sites for smartphones and tablets, or implementing responsive design techniques to serve all screen sizes. But how do the different options affect the user experience and SEO? How do you determine which is right for your company? In this webinar, you’ll find out: - What is responsive design? - Google's recommendations for building mobile-optimized websites. - What you need to understand before going responsive. - Lessons learned and results from companies who have gone responsive. This webinar is brought to you in collaboration with Elastic Path.

Citation preview

Page 1: Webinar: Is Responsive Web Design Right for Your Business?

Is Responsive Web Design Right for Your Business?

#RWDwebinar | July 30th, 2013

+

Page 2: Webinar: Is Responsive Web Design Right for Your Business?

Join the conversation at #RWDwebinar

Igor FaletskiCEO & Co-Founder

@igorskee @mobify | mobify.com

Linda BustosDirector of E-Commerce Research

@elasticpath | getelastic.com

Meet Our Hosts

Page 3: Webinar: Is Responsive Web Design Right for Your Business?

In today’s webinar1. Mobile Web: The Big Picture

2. What is Responsive Web Design

3. PROs & CONs of Different Approaches

4. How to Build a Google-Friendly Mobile Site

5. What You Need to Consider

6. Q&A with Igor and Linda

#RWDwebinar

Page 4: Webinar: Is Responsive Web Design Right for Your Business?

We provide the fastest, most secure way of optimizing your website for mobile experiences on a global scale.

Adapt your website for smartphones, tablets and more with our open platform and services, and speed up your

responsive or mobile website with our automated performance optimization features.

Mobify is used by leading Fortune 500 companies and drives hundreds of millions of dollars in mobile revenue:

#RWDwebinar

Page 5: Webinar: Is Responsive Web Design Right for Your Business?

Commerce Everywhere

We provide ecommerce software that powers the next generation of digital experience and allows you to bring the combined power of all of your technology to websites, apps, and other touchpoints

for the ultimate customer buying experience.

#1 ecommerce blog www.getelastic.com

Market leaders depend on Elastic Path to drive billions of dollars in digital commerce annually:

#RWDwebinar

Page 6: Webinar: Is Responsive Web Design Right for Your Business?

+

We work together to help businesses deliver amazing mobile and digital commerce experiences that drive

conversions and maximize revenues.

Page 7: Webinar: Is Responsive Web Design Right for Your Business?

MOBILE WEB:THE BIG PICTURE

Page 8: Webinar: Is Responsive Web Design Right for Your Business?

#RWDwebinar

Page 9: Webinar: Is Responsive Web Design Right for Your Business?

#RWDwebinar

Page 10: Webinar: Is Responsive Web Design Right for Your Business?

#RWDwebinar

Page 11: Webinar: Is Responsive Web Design Right for Your Business?

#RWDwebinar

Page 12: Webinar: Is Responsive Web Design Right for Your Business?

Mobile as a Percentage of Retail Sales

#RWDwebinar

2012 2013 2016

Page 13: Webinar: Is Responsive Web Design Right for Your Business?

Retail Sales

#RWDwebinar

Page 14: Webinar: Is Responsive Web Design Right for Your Business?

#RWDwebinar

BEFORE AFTER

Page 15: Webinar: Is Responsive Web Design Right for Your Business?

WHAT IS RESPONSIVE WEB DESIGN?

Page 16: Webinar: Is Responsive Web Design Right for Your Business?

#RWDwebinar

Page 17: Webinar: Is Responsive Web Design Right for Your Business?

ONE URLCSS OR

JAVASCRIPTSAME HTML

Google says RWD is 3 configurations

#RWDwebinar

Page 18: Webinar: Is Responsive Web Design Right for Your Business?

Ethan Marcotte says RWD is 3 front-end techniques

FLUID GRIDS MEDIA QUERIESFLEXIBLE MEDIA

Image Credit: Luke Wroblewski, CSS-Tricks

#RWDwebinar

Page 19: Webinar: Is Responsive Web Design Right for Your Business?

RWD is understanding users and breakpoints

#RWDwebinar

Page 20: Webinar: Is Responsive Web Design Right for Your Business?

PROS & CONS IN DIFFERENT

APPROACHES

Page 21: Webinar: Is Responsive Web Design Right for Your Business?

Three approaches to mobile web development1. Device-specific sites

(aka m-dot or proxy)

2. Server-side solutions

3. Responsive web design

#RWDwebinar

Page 22: Webinar: Is Responsive Web Design Right for Your Business?

Device-Specific ApproachWith a device-specific approach (aka m-dot or proxy solution), you develop separate versions of their site for each type of device, each with a separate URL.

#RWDwebinar

Page 23: Webinar: Is Responsive Web Design Right for Your Business?

Server-Side Adaptive

In this setup, the server responds with different HTML (and CSS) on the same

URL depending on the user agent requesting the page.

#RWDwebinar

Page 24: Webinar: Is Responsive Web Design Right for Your Business?

Responsive Web Design

Rather than building separate sites for each device, responsive design uses a single

website that intelligently adjusts its layout and features based on breakpoints.

#RWDwebinar

Page 25: Webinar: Is Responsive Web Design Right for Your Business?

Device-Specific ApproachYour site is found at different URLs, based on device:

Desktop: www.example.comMobile: m.example.comTablet: t.example.com

Watch: w.example.com?

Redirects are done through proxy.

#RWDwebinar

Page 26: Webinar: Is Responsive Web Design Right for Your Business?

You can customize per device

PRO: Device-Specific Approach

#RWDwebinar

Page 27: Webinar: Is Responsive Web Design Right for Your Business?

Light code = fast to load(but you have to maintain several code bases)

PRO: Device-Specific Approach

#RWDwebinar

Page 28: Webinar: Is Responsive Web Design Right for Your Business?

Fast to market(but this isn’t a future-friendly solution)

PRO: Device-Specific Approach

#RWDwebinar

Page 29: Webinar: Is Responsive Web Design Right for Your Business?

You must redirect your users, which is bad for conversions, social sharing, SEO, scalability...

#RWDwebinar

CON: Device-Specific Approach

Page 30: Webinar: Is Responsive Web Design Right for Your Business?

Multiple code bases to maintain

#RWDwebinar

CON: Device-Specific Approach

Page 31: Webinar: Is Responsive Web Design Right for Your Business?

Duplicate content

#RWDwebinar

CON: Device-Specific Approach

Page 32: Webinar: Is Responsive Web Design Right for Your Business?

Extra work is required in order for mobile content to be discovered and properly indexed

by Google (more on this later)

#RWDwebinar

CON: Device-Specific Approach

Page 33: Webinar: Is Responsive Web Design Right for Your Business?

Server-Side Approach

Your site is always found at one URL:

www.example.com

on desktop, mobile, tablet, etc.

#RWDwebinar

Page 34: Webinar: Is Responsive Web Design Right for Your Business?

PRO: Server-Side Approach

One URL

#RWDwebinar

Page 35: Webinar: Is Responsive Web Design Right for Your Business?

PRO: Server-Side Approach

Gain development control

#RWDwebinar

Page 36: Webinar: Is Responsive Web Design Right for Your Business?

CON: Server-Side Approach

Multiple code bases to maintain

#RWDwebinar

Page 37: Webinar: Is Responsive Web Design Right for Your Business?

CON: Server-Side Approach

Higher risk in servers

#RWDwebinar

Page 38: Webinar: Is Responsive Web Design Right for Your Business?

CON: Server-Side Approach

Strong developer skills needed

#RWDwebinar

Page 39: Webinar: Is Responsive Web Design Right for Your Business?

Responsive Web DesignYour site is always found at one URL:

www.example.com

on desktop, mobile, tablet, etc.

#RWDwebinar

Page 40: Webinar: Is Responsive Web Design Right for Your Business?

Responsive Web Design

Image Credit: Peter Sheldon, Forrester Research

#RWDwebinar

Page 41: Webinar: Is Responsive Web Design Right for Your Business?

Google is happy (SEO best practice)

PRO: Responsive Web Design

#RWDwebinar

Page 42: Webinar: Is Responsive Web Design Right for Your Business?

Performance is not guaranteed

CON: Responsive Web Design

#RWDwebinar

Page 43: Webinar: Is Responsive Web Design Right for Your Business?

A lot of labour, money, testing and risk is required to build a responsive

website from scratch

CON: Responsive Web Design

#RWDwebinar

Page 44: Webinar: Is Responsive Web Design Right for Your Business?

Conversions+66% Apple, +400% Android

Transactions +113% Apple, +333% Android

Revenue+100% Apple, +590% Android

Non-mobileconversion +20.3%, revenue +41%

Responsive Test Results: O’Neill

#RWDwebinar

Page 45: Webinar: Is Responsive Web Design Right for Your Business?

Responsive Results: Time Magazine

#RWDwebinar

Homepage unique visitsincreased 15%

Time spent on siteincreased 7.5%

Mobile bounce ratedecreased 26%

Page 46: Webinar: Is Responsive Web Design Right for Your Business?

Garmin worked with Mobify to get all the benefits and none of the drawbacks of RWD.

Mobile sales performance+ 55% month-over-month+391% year-over-year

Average order value+ 16% month-over-month+ 70% year-over-year

Responsive Results: Garmin

#RWDwebinar

Page 47: Webinar: Is Responsive Web Design Right for Your Business?

HOW TO BUILD A GOOGLE-FRIENDLY

MOBILE SITE

Page 48: Webinar: Is Responsive Web Design Right for Your Business?

#RWDwebinar

Page 49: Webinar: Is Responsive Web Design Right for Your Business?

Use a device-specific or server-side solution but beware:

• Google ranks these sites lower

• Extra work is needed in order for mobile content to be detected by Google

• Most vendors provide partial or no implementation of the required annotations

#RWDwebinar

Page 50: Webinar: Is Responsive Web Design Right for Your Business?

Use responsive web design

Google recommends this approach.

Responsive sites built from scratch or adapted by Mobify are automatically crawled and

indexed, and preferentially ranked by Google.

#RWDwebinar

Page 51: Webinar: Is Responsive Web Design Right for Your Business?

Google: how to fix your mobile SEO

Responsive Configurations Device-Specific Server-Side

Adaptive Adaptive (Mobify)

One URL No (Separate Sites) One URL One URL

Same HTML No No (Different HTML) Same HTML

CSS for Adaptations No No CSS + JavaScript for

Adaptations

Additional Configurations

Canonical and Alternate Tags Vary HTTP Header Not needed (100%

Compliant)

#RWDwebinar

Page 52: Webinar: Is Responsive Web Design Right for Your Business?

Mobify is the only enterprise-ready multi-screen platform vendor that is officially recommended

by Google and fully compliant with all of Google’s SEO and responsive web design best practices.

#RWDwebinar

Page 53: Webinar: Is Responsive Web Design Right for Your Business?

WHAT YOU NEED TO CONSIDER

Page 54: Webinar: Is Responsive Web Design Right for Your Business?

Business considerations1. Time to market

2. $$$

3. Marketing ROI

4. Branding

5. Organizational structure

6. Risk and security

7. Scalability

#RWDwebinar

Page 55: Webinar: Is Responsive Web Design Right for Your Business?

Technology considerations1. Development resources and skill

2. Development and maintenance process

3. Technology stack and vendors

4. Risk and security

5. Scalability

#RWDwebinar

Page 56: Webinar: Is Responsive Web Design Right for Your Business?

User considerations1. User experience

2. Context

3. Layout and functionality

4. Localization and personalization

5. Performance

#RWDwebinar

Page 57: Webinar: Is Responsive Web Design Right for Your Business?

Any questions?

Igor FaletskiCEO & Co-Founder

@igorskee @mobify | mobify.com

Linda BustosDirector of E-Commerce Research

@elasticpath | getelastic.com

Thanks for joining us for #RWDwebinar