SlideShare uma empresa Scribd logo
1 de 22
SEMINAR REPORT ON
Bootstrap Responsive UI
SUBMITTED BY:-
ISHTDEEP SINGH HORA
SESSION
2015-2016
Institute/University :-
Guru Ramdas Khalsa Institute of Science &
Technology, Jabalpur (M.P.)
Acknowledgement
Apart from the efforts of me, the success of any seminar report depends largely on the
encouragement and guidelines of many others. I take this opportunity to express my
1
gratitude to the people who have been instrumental in the successful completion of this
report.
I would like to show my greatest appreciation to Mrs. Husnara I can’t say thank you enough
for his tremendous support and help. I feel motivated and encouraged every time I attend his
meeting. Without his encouragement and guidance this report would not have materialized.
The guidance and support received from all the members who contributed and who are
contributing to this report, was vital for the success of the report. I am grateful for their
constant support and help.
Contents
2
INTRODUCTION:-
3
S.No. Topic discussed Pages(from –
to)
1. Introduction 4-6
2. Traffic through Mobile & Tablets 7-8
3. Media Queries 8
4. Why Bootstrap ? 9-12
5. Mobile First Strategy 12-19
6. Conclusion & Summary 20
7. References 21
As smartphone and tablet adoption rapidly increases, so does the importance of
mobile-friendly websites.
If SEO is a core component of your digital marketing strategy, having a mobile–
friendly website is becoming essential.
Mobile sales have already overtaken desktop sales, and mobile Internet usage is
predicted to overtake desktop internet usage by 2014. It is only logical that mobile
search will overtake desktop search at some point in the near future as well.
Since 67 percent of users claim they are more likely to purchase from a mobile-
friendly website, companies that rely on SEO are wise to begin making the transition
to mobile-friendly websites, and responsive web designspecifically.
The argument between whether to choose a responsive website or a separate
mobile website is a highly debated topic. However, the truth is that both options
have their pros and cons.
The option that is best for your business depends on many factors, such as the
purpose of the website, the intended target audience, and whether SEO is a factor.
If SEO is a factor, here are three reasons why responsive web design is the best
option for your mobile SEO strategy.
1. Recommended By Google
With 67 percent search market share, when Google speaks, search marketers listen.
Google states that responsive web design is its recommended mobile configuration,
and even goes so far as to refer to responsive web design as the industry best
practice.
This is because responsive design sites have one URL and the same HTML,
regardless of device, which makes it easier and more efficient for Google to crawl,
index, and organize content. Contrast this with a separate mobile site which has a
4
different URL and different HTML than its desktop counterpart, requiring Google to
crawl and index multiple versions of the same site.
Additionally, Google prefers responsive web design because content that lives on
one website and one URL is much easier for users to share, interact with, and link to
than content that lives on a separate mobile site.
Take for example a mobile user who shares content from a mobile site with a friend
on Facebook who then accesses that content using a desktop, which results in that
user viewing a stripped down mobile site on their desktop. This creates a less than
optimal user-experience, and because of the large emphasis Google is now placing
on user-experience as a ranking factor, this is essential to take into account with
regards to SEO.
2. One Website, Many Devices
One of the most appealing aspects of responsive web design is that a responsive
website can provide a great user-experience across many devices and screen sizes.
This is an important characteristic, since it is impossible to anticipate all the devices
and screen sizes searchers will use to access your site. A site that works well
regardless of these variables will provide a better and more consistent user-
experience than a separate mobile site that is designed for a specific device and
screen size.
Let’s take the following example. Someone searches for a product on their
smartphone during a lunch break at work. They find a site that has the product
they’re looking for, and decide to continue researching this product on the same
site when they get home. Except, when they get home, they will use their desktop
instead of their smartphone.
If the site in this example is responsive, this person will have a positive user-
experience when transitioning from mobile to desktop because they will view the
5
same site on their desktop as they did on their smartphone. On the other hand, if
the site is a dedicated mobile site, this person will become frustrated with the fact
that they have to locate the desktop version of the site, and find the product all over
again.
3. Easier to Manage
Having a separate desktop and mobile site requires having separate SEO campaigns.
Managing one site and one SEO campaign is far easier than managing two sites and
two SEO campaigns. This is a key advantage a responsive website has over a
separate mobile site.
That being said, there are benefits to having a mobile-specific SEO strategy, such as
optimizing for keywords that are more likely to be searched when someone is on
their smartphone.
For example, someone performing a mobile search for a local restaurant may be
more inclined to use the word “nearby” in their search query. However, a separate
mobile site is not a requirement for a mobile SEO strategy, and there's no reason
why mobile-specific keywords can't be incorporated into a responsive design site as
well.
Mobile Devices Searches ?
6
The use of mobile devices to access the internet has increased by 67% worldwide over
the last 12 months according to StatCounter, the independent website analytics
company.
The report from the company's research arm, StatCounter Global Stats, finds that while
desktop remains the most popular means to access the web on 64.6%, mobile has
grown rapidly from 17.1% to 28.5%. Tablet devices account for 6.8% of internet usage,
compared to 4.8% 12 months ago.
StatCounter announced the findings to mark the launch of its new web analytics
apps for iOS and Android. These apps, which are free to download and use, are
available from iTunes or Google Play.
"Mobile usage has already overtaken desktop in several countries including India, South
Africa and Saudi Arabia," commented Aodhan Cullen, CEO, StatCounter. "All indications
are that this trend is set to continue, which creates new challenges and opportunities
for businesses globally."
He noted that just three years ago desktop was the number one platform across all
countries. StatCounter has produced an animated world map to show how this has
changed since then.
Mobile internet usage in the US has grown by 73% over the last 12 months to reach
24.4% in August. UK mobile internet usage is up by 69% to 23.2%. Other individual
7
country stats are available at http://gs.statcounter.com/#all-comparison-ww-monthly-
201308-201408.
Cullen added that mobile internet usage is increasing faster than tablet usage. "The
slower growth of tablets may be due to the trend towards larger screen smartphones. It
will be interesting to see whether Apple's new larger iPhone 6 Plus becomes a tablet
killer."
StatCounter Global Stats data is based on over 15 billion page views per month to over
three million websites.
Independent web analytics specialist StatCounter (www.statcounter.com) tracks
millions of websites globally. Its new mobile website analytics apps allow members to
view familiar StatCounter reports including weekly traffic trend analysis; recent visitor
activity; incoming traffic sources plus other data.
StatCounter also recently announced a new feature in response to Google's
controversial removal of keyword data. By integrating Google Webmaster Tools data
into its reports, StatCounter has given its members the ability to easily analyze all
available keyword data.
Media Queries :-
"Responsive Design" is the strategy of making a site that "responds" to the browser
and device that it is being shown on... by looking awesome no matter what.
Media queries are the most powerful tool for doing this. Let's take our layout that
uses percent widths and have it display in one column when the browser is too
small to fit the menu in the sidebar:
@media screen and (min-width:600px) {
nav {
float: left;
width: 25%;
}
section {
8
margin-left: 25%;
}
}
@media screen and (max-width:599px) {
nav li {
display: inline;
}
Why Bootstrap ?
For those of you, who like me have been developing websites for few years, we tend to
use similar chunks of CSS code that we copy paste from project to project.
Those of you who are more organized may have developed your own set of base CSS
files to use as foundation for your projects. This method works, but let’s face it, this is
not the most efficient way to do things.
Creating a CSS framework that is flexible, follows latest standards and is thoroughly
tested takes days of work and could become a project in itself. Most of us don’t have
time to do this.
To make matters worse, with the rise of mobile devices, making responsive websites
and keeping up with the latest technologies is time consuming.
Bootstrap and CSS frameworks
Designers need a solid foundation that gives us almost everything a typical website
would require but is flexible enough for customization. Thanks to hundreds of hours
spent by some developers and companies, we now have dozens of CSS Frameworks to
choose from.
Among all the available CSS frameworks out there, Bootstrap is my favorite and also
one of the most widely used. It's included by default in Joomla 3.
Bootstrap’s CSS files are also provided in LESS which makes it very easy to customize if
you already use LESS for CSS pre-processing.
9
So why should you choose Bootstrap? Here are 6 great reasons:
Reason #1. Easy to get started
CSS Pre-processing is great and every front end developer should learn it. However not
everyone is using it. There are still many designers creating and managing CSS files the
same old way. Bootstrap offers LESS files for those of us who know how to use it, but it
also provides the plain old CSS file for those don’t want to use CSS pre-processing.
To take advantage of what Bootstrap has to offer, you just have to download the files
from Bootstrap on Github and after unzipping, include the files in the head of your
HTML document.
This example HTML document includes the bootstrap framework with its default styling
and every single components and JavaScript plugins.
Reason #2. Great grid system
Bootstrap is built on responsive 12-column grids, layouts and components. Whether
you need a fixed grid or a responsive, its only matter of a few changes. Offsetting &
Nesting of columns is also possible in both fixed and fluid width layouts.
Another useful set of features are the responsive utility classes using which you can
make a certain block of content appear or hide only on devices based on the size of
their screen. Very handy when you want to hide some content based on screen size.
Adding a class such as .visible-desktop to a element, will make it visible only for desktop
users. There are similar classes for tablets and phones.
Reason #3. Base styling for most HTML elements
A website has many different elements such as headings, lists, tables, buttons, forms, etc.
All these fundamental HTML elements have been styled and enhanced with extensible
classes.
10
The HTML elements for which styles are provided are:
• Typography
• Code
• Tables
• Forms
• Buttons
• Images
• Icons
Reason #4. Extensive list of components
Whether you need drop down menus, pagination or alert boxes, Bootstrap has got your
covered. Styling of every single element follows a consistent theme and if you know
LESS, then customizing it takes just few minutes.
Some of the components pre styled are:
• Dropdowns
• Button Groups
• Navigation Bar
• Breadcrumbs
• Labels & Badges
• Alerts
• Progress Bar
• And many others.
11
Reason #5. Bundled Javascript plugins
The components such as drop down menu are made interactive with the numerous
JavaScript plugins bundled in the bootstrap package.
If you project requires sliders, tabs, accordions, then you no longer have to try and test
numerous different plugins across the web. Adding these functionalities is just a matter
of adding few lines of code and you are all set. With the customization option you can
also choose only certain plugins to keep the file size to a minimum.
Reason #6. Good documentation
Not only does Bootstrap offer styling for almost every element a typical website or web
application requires, it also provides a great documentation with examples and demo
that only make it more easier for even someone new.
Mobile First Strategy
The mobile-first design has never been this crucial as consumers all over the
world increasingly prefer using mobile devices, with the smartphone topping the
list. This should come as no surprise with some of the recent statistics saying that
Americans spend a daily average of 4.7 hours on their smartphones and 80
percnet of Millennials sleep next to their phones.
Web designer, speaker, and consultant Brad Frost’s definition of mobile-first
design — “making mobile a priority instead of an afterthought in order to
capitalize the growth and capabilities of the medium” — definitely hits the spot
as to why it is now imperative for companies to take heed. Propelrr further
points out how mobile-first strategy can lead your customers to your desired
actions.
12
However, it should be noted that just like any digital strategy, mobile-first design
is best utilized when incorporated into a company’s overall marketing scheme. In
this sink-or-swim world of marketing with your company’s bottom line at stake,
nonlinear marketing — integrating your online and offline marketing strategies
clearly and seamlessly — is essential for you to send your core message across all
of your channels. To achieve this, here are five ways of using mobile-first strategy
to integrate online and offline marketing campaigns.
Make your website appear fast and functional on any mobile
device
Photo Courtesy of Serge Kij via Flickr, Creative Commons
Today’s consumers are on-the-go so you need to consider their mobile-viewing
experience — and utmost convenience — when they visit your website. This will
help you make the most out of their mobile usage especially when they use their
13
phones with the little pockets of time that they have — while waiting in lines,
using the bathroom, before falling asleep, and so on.
Tailor your website to be a responsive and mobile-friendly one, keeping different
mobile connection speeds and screen sizes in mind. Avoid encumbering your
mobile website with large image and files. Also, always keep in mind that no
matter what the platform is, content is king so while your mobile website’s
design should cut to the chase, it should not be found lacking in explaining your
products and services.
This also comes in handy when they drive over to your physical store so make
sure to optimize the mapping feature on your mobile website to help them
locate your physical store. To further drive offline retails sales with integrated
digital marketing, have your business and location listed on Google Places or
Yahoo! Local.
Give customers a great selection of deals with mobile marketing
14
You may have plenty of bargains in your online and offline marketing channels,
but you need to take it up a notch to catch the attention of always-connected
consumers who are bombarded with marketing materials every day. Make your
products and services find their way into customers’ radar by bringing promos,
discounts, and loyalty rewards scheme right to their mobile device.
Make your emails as clear, concise, and clutter-free as possible starting from the
subject line up to the content itself. If you have images, avoid large files that take
too long to load and include a text body which gets the message across even
without the help of images. More importantly, double check that your offers
across your online and offline marketing campaigns do not conflict with one
another.
Take advantage of QR codes
15
Photo Courtesy of Paul Swansen via Flickr, Creative Commons
QR codes take customers to your online marketing channel once their
smartphone or tablet scans these barcodes. Include QR codes in your offline
marketing materials — brochures, print ads, even business cards, and so on. The
moment customers get their hands on these materials, it means you caught their
attention and now you have to further engage them to check out your online
presence.
Aside from making sure the QR code is printed clearly, entice them as to why
scanning the code is worth their time. Use irresistible one-liners such as “Scan
here for your free gift.” Hinge it on the idea of providing customers exclusive
content and promos at the minuscule cost of them simply scanning the code.
16
Boost your sales by knowing their location
Photo Courtesy of Intel Free Press via Flickr, Creative Commons
Mobile device users prefer their gadgets of choice for a variety of reasons but the
likeliest one to underpin their use is convenience while they are on the go. With
one of marketing’s basic principles — studying your target market — learn more
about your customers’ locations as sent from their mobile devices.
You can then use the information to better formulate your online and offline
marketing strategies. For instance, if you are a company with young professionals
as your target audience, know where they hang out most of the time. You can
pinpoint which of your physical retail stores need a boost. From this, create
online marketing campaigns such as Facebook ads or posts drawing attention to
the particular stores in question.
17
Keep customers with apps for their needs
Photo Courtesy of Rachel Elaine. via Flickr, Creative Commons
While creating an innovative, cutting-edge app sounds intimidating for a sizable
number of businesses, the underlying principle should be this: how can your
brand’s message serve the needs of consumers? Think outside the box regarding
the execution but think of utility as well. Also, never forget to stick to your
company’s core branding.
A great example is the kid-tracking app from Nivea’s Sun Kids, which bagged first
place in the Cannes Lions International Festival of Creativity’s Mobile category
last year.
Recognizing that parents who use their products protect their kids, Nivea took
protection to a higher level by recognizing as well — and giving a solution to —
18
adults’ fears over missing children. Introducing this app in Brazilian magazine
advertisements inserted with a tracking bracelet for kids, the company led
parents to their online marketing scheme as the mobile app required
connectivity to locate GPS.
Mobile-first design is not coined as such for nothing. With the large and growing
number of mobile users, companies should find ways on how to optimize their
brand on customers’ mobile screens, with the consumers’ convenience in mind.
But then again, it is a must to incorporate this strategy in the overall marketing
plan and to integrate your online and offline marketing campaigns accordingly.
CONCLUSION & SUMMARY
One of the most appealing aspects of responsive web design is that a responsive
website can provide a great user-experience across many devices and screen sizes.
This is an important characteristic, since it is impossible to anticipate all the devices
19
and screen sizes searchers will use to access your site. A site that works well
regardless of these variables will provide a better and more consistent user-
experience than a separate mobile site that is designed for a specific device and
screen size.
Let’s take the following example. Someone searches for a product on their
smartphone during a lunch break at work. They find a site that has the product
they’re looking for, and decide to continue researching this product on the same
site when they get home. Except, when they get home, they will use their desktop
instead of their smartphone.
If the site in this example is responsive, this person will have a positive user-
experience when transitioning from mobile to desktop because they will view the
same site on their desktop as they did on their smartphone. On the other hand, if
the site is a dedicated mobile site, this person will become frustrated with the fact
that they have to locate the desktop version of the site, and find the product all over
again.
References:-
 http://www.gsmarena.com/glossary.php3?term=nfc
 http://en.wikipedia.org/wiki/Near_field_communication
20
 http://www.nfcworld.com/about/
 http://www.techradar.com/news/phone-and-communications/what-is-nfc-and-why-
is-it-in-your-phone-948410
 "EXCLUSIVE: Confirmed as Name of e". Retrieved May 7, 2013.
21
22

Mais conteúdo relacionado

Mais procurados

Bootstrap 3
Bootstrap 3Bootstrap 3
Bootstrap 3Lanh Le
 
Cross platform mobile development
Cross platform mobile developmentCross platform mobile development
Cross platform mobile developmentPeter Friese
 
Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by MukeshMukesh Kumar
 
Responsive web designing ppt(1)
Responsive web designing ppt(1)Responsive web designing ppt(1)
Responsive web designing ppt(1)admecindia1
 
About Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JSAbout Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JSNaga Harish M
 
An introduction to bootstrap
An introduction to bootstrapAn introduction to bootstrap
An introduction to bootstrapMind IT Systems
 
Front End Development | Introduction
Front End Development | IntroductionFront End Development | Introduction
Front End Development | IntroductionJohnTaieb
 
Html, CSS & Web Designing
Html, CSS & Web DesigningHtml, CSS & Web Designing
Html, CSS & Web DesigningLeslie Steele
 
Ppt of web development
Ppt of web developmentPpt of web development
Ppt of web developmentbethanygfair
 
Web development using javaScript, React js, Node js, HTML, CSS and SQL
Web development using javaScript, React js, Node js, HTML, CSS and SQLWeb development using javaScript, React js, Node js, HTML, CSS and SQL
Web development using javaScript, React js, Node js, HTML, CSS and SQLJayant Surana
 
HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!Syahmi RH
 
Presentation of bootstrap
Presentation of bootstrapPresentation of bootstrap
Presentation of bootstrap1amitgupta
 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginnersSingsys Pte Ltd
 
Major File On web Development
Major File On web Development Major File On web Development
Major File On web Development Love Kothari
 

Mais procurados (20)

Bootstrap 3
Bootstrap 3Bootstrap 3
Bootstrap 3
 
Cross platform mobile development
Cross platform mobile developmentCross platform mobile development
Cross platform mobile development
 
Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
 
Bootstrap 5 ppt
Bootstrap 5 pptBootstrap 5 ppt
Bootstrap 5 ppt
 
Responsive web designing ppt(1)
Responsive web designing ppt(1)Responsive web designing ppt(1)
Responsive web designing ppt(1)
 
About Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JSAbout Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JS
 
An introduction to bootstrap
An introduction to bootstrapAn introduction to bootstrap
An introduction to bootstrap
 
Front End Development | Introduction
Front End Development | IntroductionFront End Development | Introduction
Front End Development | Introduction
 
Html, CSS & Web Designing
Html, CSS & Web DesigningHtml, CSS & Web Designing
Html, CSS & Web Designing
 
Bootstrap ppt
Bootstrap pptBootstrap ppt
Bootstrap ppt
 
Bootstrap 5 basic
Bootstrap 5 basicBootstrap 5 basic
Bootstrap 5 basic
 
Ppt of web development
Ppt of web developmentPpt of web development
Ppt of web development
 
Web development using javaScript, React js, Node js, HTML, CSS and SQL
Web development using javaScript, React js, Node js, HTML, CSS and SQLWeb development using javaScript, React js, Node js, HTML, CSS and SQL
Web development using javaScript, React js, Node js, HTML, CSS and SQL
 
HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!HTML, CSS And JAVASCRIPT!
HTML, CSS And JAVASCRIPT!
 
Presentation of bootstrap
Presentation of bootstrapPresentation of bootstrap
Presentation of bootstrap
 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginners
 
Javascript
JavascriptJavascript
Javascript
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
Major File On web Development
Major File On web Development Major File On web Development
Major File On web Development
 
Php mysql ppt
Php mysql pptPhp mysql ppt
Php mysql ppt
 

Semelhante a Bootstrap responsive design

Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Designmary huston
 
Carousel30: Optimizing for the mobile user experience whitepaper
Carousel30: Optimizing for the mobile user experience whitepaperCarousel30: Optimizing for the mobile user experience whitepaper
Carousel30: Optimizing for the mobile user experience whitepaperCarousel30
 
optimize website for mobile marketing
optimize website for mobile marketingoptimize website for mobile marketing
optimize website for mobile marketingOlatunji Adetunji
 
Responsive web design goomi technology
Responsive web design goomi technologyResponsive web design goomi technology
Responsive web design goomi technologySandeep Gupta
 
Is Responsive the best solution to all our Mobile SEO problems>
Is Responsive the best solution to all our Mobile SEO problems>Is Responsive the best solution to all our Mobile SEO problems>
Is Responsive the best solution to all our Mobile SEO problems>Jose L. Truchado
 
Eight things you need to know about your web and social media content - ALHAUS
Eight things you need to know about your web and social media content - ALHAUSEight things you need to know about your web and social media content - ALHAUS
Eight things you need to know about your web and social media content - ALHAUSAndy Buckley
 
Responsive Web Design vs Mobile Web App
Responsive Web Design vs Mobile Web AppResponsive Web Design vs Mobile Web App
Responsive Web Design vs Mobile Web AppPamela Ireri
 
A Complete Guide to Mobile Search
A Complete Guide to Mobile SearchA Complete Guide to Mobile Search
A Complete Guide to Mobile Searchsemrush_webinars
 
Mobile first - one key important aspect in digitalisation
Mobile first - one key important aspect in digitalisationMobile first - one key important aspect in digitalisation
Mobile first - one key important aspect in digitalisationHelmi Hasan
 
Did the recent mobile update affect your website traffic?
Did the recent mobile update affect your website traffic?Did the recent mobile update affect your website traffic?
Did the recent mobile update affect your website traffic?Christopher Dill
 
Google: How to Make Your Website Work Across Devices
Google: How to Make Your Website Work Across DevicesGoogle: How to Make Your Website Work Across Devices
Google: How to Make Your Website Work Across DevicesMatt Brocklehurst
 
What is Responsive Design and how does it help your business ?
What is Responsive Design and how does it help your business ?What is Responsive Design and how does it help your business ?
What is Responsive Design and how does it help your business ?Grapefruit
 
Mobile web marketing - eSalesData
Mobile web marketing - eSalesDataMobile web marketing - eSalesData
Mobile web marketing - eSalesDataeSalesData
 
How not having a Responsive Website can be Detrimental to your business?
How not having a Responsive Website can be Detrimental to your business?How not having a Responsive Website can be Detrimental to your business?
How not having a Responsive Website can be Detrimental to your business?Helios Solutions
 
Trimax solutions article why your website must now be responsive for smartp...
Trimax solutions article   why your website must now be responsive for smartp...Trimax solutions article   why your website must now be responsive for smartp...
Trimax solutions article why your website must now be responsive for smartp...trimaxsolutions
 
Mobile SEO Best Practices & Tips
Mobile SEO Best Practices & TipsMobile SEO Best Practices & Tips
Mobile SEO Best Practices & TipsNavneet Kaushal
 

Semelhante a Bootstrap responsive design (20)

Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Carousel30: Optimizing for the mobile user experience whitepaper
Carousel30: Optimizing for the mobile user experience whitepaperCarousel30: Optimizing for the mobile user experience whitepaper
Carousel30: Optimizing for the mobile user experience whitepaper
 
optimize website for mobile marketing
optimize website for mobile marketingoptimize website for mobile marketing
optimize website for mobile marketing
 
Responsive web design goomi technology
Responsive web design goomi technologyResponsive web design goomi technology
Responsive web design goomi technology
 
Is Responsive the best solution to all our Mobile SEO problems>
Is Responsive the best solution to all our Mobile SEO problems>Is Responsive the best solution to all our Mobile SEO problems>
Is Responsive the best solution to all our Mobile SEO problems>
 
Eight things you need to know about your web and social media content - ALHAUS
Eight things you need to know about your web and social media content - ALHAUSEight things you need to know about your web and social media content - ALHAUS
Eight things you need to know about your web and social media content - ALHAUS
 
Google’s guidelines on mobile seo
Google’s guidelines on mobile seoGoogle’s guidelines on mobile seo
Google’s guidelines on mobile seo
 
Responsive Web Design vs Mobile Web App
Responsive Web Design vs Mobile Web AppResponsive Web Design vs Mobile Web App
Responsive Web Design vs Mobile Web App
 
Responsive Web Design and Its Benefit.pdf
Responsive Web Design and Its Benefit.pdfResponsive Web Design and Its Benefit.pdf
Responsive Web Design and Its Benefit.pdf
 
A Complete Guide to Mobile Search
A Complete Guide to Mobile SearchA Complete Guide to Mobile Search
A Complete Guide to Mobile Search
 
Benefits of Responsive Web Design
Benefits of Responsive Web DesignBenefits of Responsive Web Design
Benefits of Responsive Web Design
 
Mobile first - one key important aspect in digitalisation
Mobile first - one key important aspect in digitalisationMobile first - one key important aspect in digitalisation
Mobile first - one key important aspect in digitalisation
 
Did the recent mobile update affect your website traffic?
Did the recent mobile update affect your website traffic?Did the recent mobile update affect your website traffic?
Did the recent mobile update affect your website traffic?
 
Google: How to Make Your Website Work Across Devices
Google: How to Make Your Website Work Across DevicesGoogle: How to Make Your Website Work Across Devices
Google: How to Make Your Website Work Across Devices
 
Web Design
Web DesignWeb Design
Web Design
 
What is Responsive Design and how does it help your business ?
What is Responsive Design and how does it help your business ?What is Responsive Design and how does it help your business ?
What is Responsive Design and how does it help your business ?
 
Mobile web marketing - eSalesData
Mobile web marketing - eSalesDataMobile web marketing - eSalesData
Mobile web marketing - eSalesData
 
How not having a Responsive Website can be Detrimental to your business?
How not having a Responsive Website can be Detrimental to your business?How not having a Responsive Website can be Detrimental to your business?
How not having a Responsive Website can be Detrimental to your business?
 
Trimax solutions article why your website must now be responsive for smartp...
Trimax solutions article   why your website must now be responsive for smartp...Trimax solutions article   why your website must now be responsive for smartp...
Trimax solutions article why your website must now be responsive for smartp...
 
Mobile SEO Best Practices & Tips
Mobile SEO Best Practices & TipsMobile SEO Best Practices & Tips
Mobile SEO Best Practices & Tips
 

Mais de Ishtdeep Hora

Mais de Ishtdeep Hora (13)

Green computing
Green computingGreen computing
Green computing
 
Electric generator
Electric generatorElectric generator
Electric generator
 
Hand free driving
Hand free drivingHand free driving
Hand free driving
 
Roofs & Floors(civil engg.)
Roofs & Floors(civil engg.)Roofs & Floors(civil engg.)
Roofs & Floors(civil engg.)
 
Stones
StonesStones
Stones
 
Blue brain
Blue brainBlue brain
Blue brain
 
Remote Sensing ppt
Remote Sensing pptRemote Sensing ppt
Remote Sensing ppt
 
Near Field Communication (NFC) technology
Near Field Communication (NFC) technologyNear Field Communication (NFC) technology
Near Field Communication (NFC) technology
 
User datagram protocol
User datagram protocolUser datagram protocol
User datagram protocol
 
3d television
3d television3d television
3d television
 
Xbox technology
Xbox technologyXbox technology
Xbox technology
 
E-ball
E-ball E-ball
E-ball
 
PPT / slide presentation on Xbox
PPT / slide presentation on XboxPPT / slide presentation on Xbox
PPT / slide presentation on Xbox
 

Último

Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptxUnit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptxNitish292041
 
guest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssssguest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssssNadaMohammed714321
 
Karim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 pppppppppppppppKarim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 pppppppppppppppNadaMohammed714321
 
simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfsimpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfLucyBonelli
 
Interior Design for Office a cura di RMG Project Studio
Interior Design for Office a cura di RMG Project StudioInterior Design for Office a cura di RMG Project Studio
Interior Design for Office a cura di RMG Project StudioRMG Project Studio
 
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道yrolcks
 
FW25-26 Knit Cut & Sew Trend Book Peclers Paris
FW25-26 Knit Cut & Sew Trend Book Peclers ParisFW25-26 Knit Cut & Sew Trend Book Peclers Paris
FW25-26 Knit Cut & Sew Trend Book Peclers ParisPeclers Paris
 
NBA power point presentation final copy y
NBA power point presentation final copy yNBA power point presentation final copy y
NBA power point presentation final copy ysrajece
 
Karim apartment ideas 01 ppppppppppppppp
Karim apartment ideas 01 pppppppppppppppKarim apartment ideas 01 ppppppppppppppp
Karim apartment ideas 01 pppppppppppppppNadaMohammed714321
 
guest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssssguest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssssNadaMohammed714321
 
The spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenologyThe spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenologyChristopher Totten
 
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.pptMaking and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.pptJIT KUMAR GUPTA
 
Niintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxNiintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxKevinYaelJimnezSanti
 
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...Associazione Digital Days
 
Piece by Piece Magazine
Piece by Piece Magazine                      Piece by Piece Magazine
Piece by Piece Magazine CharlottePulte
 
world health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbbworld health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbbpreetirao780
 
Map of St. Louis Parks
Map of St. Louis Parks                              Map of St. Louis Parks
Map of St. Louis Parks CharlottePulte
 
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...Rishabh Aryan
 
General Simple Guide About AI in Design By: A.L. Samar Hossam ElDin
General Simple Guide About AI in Design By: A.L. Samar Hossam ElDinGeneral Simple Guide About AI in Design By: A.L. Samar Hossam ElDin
General Simple Guide About AI in Design By: A.L. Samar Hossam ElDinSamar Hossam ElDin Ahmed
 
AI and Design Vol. 2: Navigating the New Frontier - Morgenbooster
AI and Design Vol. 2: Navigating the New Frontier - MorgenboosterAI and Design Vol. 2: Navigating the New Frontier - Morgenbooster
AI and Design Vol. 2: Navigating the New Frontier - Morgenbooster1508 A/S
 

Último (20)

Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptxUnit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
 
guest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssssguest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssss
 
Karim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 pppppppppppppppKarim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 ppppppppppppppp
 
simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfsimpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
 
Interior Design for Office a cura di RMG Project Studio
Interior Design for Office a cura di RMG Project StudioInterior Design for Office a cura di RMG Project Studio
Interior Design for Office a cura di RMG Project Studio
 
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
 
FW25-26 Knit Cut & Sew Trend Book Peclers Paris
FW25-26 Knit Cut & Sew Trend Book Peclers ParisFW25-26 Knit Cut & Sew Trend Book Peclers Paris
FW25-26 Knit Cut & Sew Trend Book Peclers Paris
 
NBA power point presentation final copy y
NBA power point presentation final copy yNBA power point presentation final copy y
NBA power point presentation final copy y
 
Karim apartment ideas 01 ppppppppppppppp
Karim apartment ideas 01 pppppppppppppppKarim apartment ideas 01 ppppppppppppppp
Karim apartment ideas 01 ppppppppppppppp
 
guest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssssguest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssss
 
The spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenologyThe spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenology
 
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.pptMaking and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
 
Niintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxNiintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptx
 
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...
Giulio Michelon, Founder di @Belka – “Oltre le Stime: Sviluppare una Mentalit...
 
Piece by Piece Magazine
Piece by Piece Magazine                      Piece by Piece Magazine
Piece by Piece Magazine
 
world health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbbworld health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbb
 
Map of St. Louis Parks
Map of St. Louis Parks                              Map of St. Louis Parks
Map of St. Louis Parks
 
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
 
General Simple Guide About AI in Design By: A.L. Samar Hossam ElDin
General Simple Guide About AI in Design By: A.L. Samar Hossam ElDinGeneral Simple Guide About AI in Design By: A.L. Samar Hossam ElDin
General Simple Guide About AI in Design By: A.L. Samar Hossam ElDin
 
AI and Design Vol. 2: Navigating the New Frontier - Morgenbooster
AI and Design Vol. 2: Navigating the New Frontier - MorgenboosterAI and Design Vol. 2: Navigating the New Frontier - Morgenbooster
AI and Design Vol. 2: Navigating the New Frontier - Morgenbooster
 

Bootstrap responsive design

  • 1. SEMINAR REPORT ON Bootstrap Responsive UI SUBMITTED BY:- ISHTDEEP SINGH HORA SESSION 2015-2016 Institute/University :- Guru Ramdas Khalsa Institute of Science & Technology, Jabalpur (M.P.) Acknowledgement Apart from the efforts of me, the success of any seminar report depends largely on the encouragement and guidelines of many others. I take this opportunity to express my 1
  • 2. gratitude to the people who have been instrumental in the successful completion of this report. I would like to show my greatest appreciation to Mrs. Husnara I can’t say thank you enough for his tremendous support and help. I feel motivated and encouraged every time I attend his meeting. Without his encouragement and guidance this report would not have materialized. The guidance and support received from all the members who contributed and who are contributing to this report, was vital for the success of the report. I am grateful for their constant support and help. Contents 2
  • 3. INTRODUCTION:- 3 S.No. Topic discussed Pages(from – to) 1. Introduction 4-6 2. Traffic through Mobile & Tablets 7-8 3. Media Queries 8 4. Why Bootstrap ? 9-12 5. Mobile First Strategy 12-19 6. Conclusion & Summary 20 7. References 21
  • 4. As smartphone and tablet adoption rapidly increases, so does the importance of mobile-friendly websites. If SEO is a core component of your digital marketing strategy, having a mobile– friendly website is becoming essential. Mobile sales have already overtaken desktop sales, and mobile Internet usage is predicted to overtake desktop internet usage by 2014. It is only logical that mobile search will overtake desktop search at some point in the near future as well. Since 67 percent of users claim they are more likely to purchase from a mobile- friendly website, companies that rely on SEO are wise to begin making the transition to mobile-friendly websites, and responsive web designspecifically. The argument between whether to choose a responsive website or a separate mobile website is a highly debated topic. However, the truth is that both options have their pros and cons. The option that is best for your business depends on many factors, such as the purpose of the website, the intended target audience, and whether SEO is a factor. If SEO is a factor, here are three reasons why responsive web design is the best option for your mobile SEO strategy. 1. Recommended By Google With 67 percent search market share, when Google speaks, search marketers listen. Google states that responsive web design is its recommended mobile configuration, and even goes so far as to refer to responsive web design as the industry best practice. This is because responsive design sites have one URL and the same HTML, regardless of device, which makes it easier and more efficient for Google to crawl, index, and organize content. Contrast this with a separate mobile site which has a 4
  • 5. different URL and different HTML than its desktop counterpart, requiring Google to crawl and index multiple versions of the same site. Additionally, Google prefers responsive web design because content that lives on one website and one URL is much easier for users to share, interact with, and link to than content that lives on a separate mobile site. Take for example a mobile user who shares content from a mobile site with a friend on Facebook who then accesses that content using a desktop, which results in that user viewing a stripped down mobile site on their desktop. This creates a less than optimal user-experience, and because of the large emphasis Google is now placing on user-experience as a ranking factor, this is essential to take into account with regards to SEO. 2. One Website, Many Devices One of the most appealing aspects of responsive web design is that a responsive website can provide a great user-experience across many devices and screen sizes. This is an important characteristic, since it is impossible to anticipate all the devices and screen sizes searchers will use to access your site. A site that works well regardless of these variables will provide a better and more consistent user- experience than a separate mobile site that is designed for a specific device and screen size. Let’s take the following example. Someone searches for a product on their smartphone during a lunch break at work. They find a site that has the product they’re looking for, and decide to continue researching this product on the same site when they get home. Except, when they get home, they will use their desktop instead of their smartphone. If the site in this example is responsive, this person will have a positive user- experience when transitioning from mobile to desktop because they will view the 5
  • 6. same site on their desktop as they did on their smartphone. On the other hand, if the site is a dedicated mobile site, this person will become frustrated with the fact that they have to locate the desktop version of the site, and find the product all over again. 3. Easier to Manage Having a separate desktop and mobile site requires having separate SEO campaigns. Managing one site and one SEO campaign is far easier than managing two sites and two SEO campaigns. This is a key advantage a responsive website has over a separate mobile site. That being said, there are benefits to having a mobile-specific SEO strategy, such as optimizing for keywords that are more likely to be searched when someone is on their smartphone. For example, someone performing a mobile search for a local restaurant may be more inclined to use the word “nearby” in their search query. However, a separate mobile site is not a requirement for a mobile SEO strategy, and there's no reason why mobile-specific keywords can't be incorporated into a responsive design site as well. Mobile Devices Searches ? 6
  • 7. The use of mobile devices to access the internet has increased by 67% worldwide over the last 12 months according to StatCounter, the independent website analytics company. The report from the company's research arm, StatCounter Global Stats, finds that while desktop remains the most popular means to access the web on 64.6%, mobile has grown rapidly from 17.1% to 28.5%. Tablet devices account for 6.8% of internet usage, compared to 4.8% 12 months ago. StatCounter announced the findings to mark the launch of its new web analytics apps for iOS and Android. These apps, which are free to download and use, are available from iTunes or Google Play. "Mobile usage has already overtaken desktop in several countries including India, South Africa and Saudi Arabia," commented Aodhan Cullen, CEO, StatCounter. "All indications are that this trend is set to continue, which creates new challenges and opportunities for businesses globally." He noted that just three years ago desktop was the number one platform across all countries. StatCounter has produced an animated world map to show how this has changed since then. Mobile internet usage in the US has grown by 73% over the last 12 months to reach 24.4% in August. UK mobile internet usage is up by 69% to 23.2%. Other individual 7
  • 8. country stats are available at http://gs.statcounter.com/#all-comparison-ww-monthly- 201308-201408. Cullen added that mobile internet usage is increasing faster than tablet usage. "The slower growth of tablets may be due to the trend towards larger screen smartphones. It will be interesting to see whether Apple's new larger iPhone 6 Plus becomes a tablet killer." StatCounter Global Stats data is based on over 15 billion page views per month to over three million websites. Independent web analytics specialist StatCounter (www.statcounter.com) tracks millions of websites globally. Its new mobile website analytics apps allow members to view familiar StatCounter reports including weekly traffic trend analysis; recent visitor activity; incoming traffic sources plus other data. StatCounter also recently announced a new feature in response to Google's controversial removal of keyword data. By integrating Google Webmaster Tools data into its reports, StatCounter has given its members the ability to easily analyze all available keyword data. Media Queries :- "Responsive Design" is the strategy of making a site that "responds" to the browser and device that it is being shown on... by looking awesome no matter what. Media queries are the most powerful tool for doing this. Let's take our layout that uses percent widths and have it display in one column when the browser is too small to fit the menu in the sidebar: @media screen and (min-width:600px) { nav { float: left; width: 25%; } section { 8
  • 9. margin-left: 25%; } } @media screen and (max-width:599px) { nav li { display: inline; } Why Bootstrap ? For those of you, who like me have been developing websites for few years, we tend to use similar chunks of CSS code that we copy paste from project to project. Those of you who are more organized may have developed your own set of base CSS files to use as foundation for your projects. This method works, but let’s face it, this is not the most efficient way to do things. Creating a CSS framework that is flexible, follows latest standards and is thoroughly tested takes days of work and could become a project in itself. Most of us don’t have time to do this. To make matters worse, with the rise of mobile devices, making responsive websites and keeping up with the latest technologies is time consuming. Bootstrap and CSS frameworks Designers need a solid foundation that gives us almost everything a typical website would require but is flexible enough for customization. Thanks to hundreds of hours spent by some developers and companies, we now have dozens of CSS Frameworks to choose from. Among all the available CSS frameworks out there, Bootstrap is my favorite and also one of the most widely used. It's included by default in Joomla 3. Bootstrap’s CSS files are also provided in LESS which makes it very easy to customize if you already use LESS for CSS pre-processing. 9
  • 10. So why should you choose Bootstrap? Here are 6 great reasons: Reason #1. Easy to get started CSS Pre-processing is great and every front end developer should learn it. However not everyone is using it. There are still many designers creating and managing CSS files the same old way. Bootstrap offers LESS files for those of us who know how to use it, but it also provides the plain old CSS file for those don’t want to use CSS pre-processing. To take advantage of what Bootstrap has to offer, you just have to download the files from Bootstrap on Github and after unzipping, include the files in the head of your HTML document. This example HTML document includes the bootstrap framework with its default styling and every single components and JavaScript plugins. Reason #2. Great grid system Bootstrap is built on responsive 12-column grids, layouts and components. Whether you need a fixed grid or a responsive, its only matter of a few changes. Offsetting & Nesting of columns is also possible in both fixed and fluid width layouts. Another useful set of features are the responsive utility classes using which you can make a certain block of content appear or hide only on devices based on the size of their screen. Very handy when you want to hide some content based on screen size. Adding a class such as .visible-desktop to a element, will make it visible only for desktop users. There are similar classes for tablets and phones. Reason #3. Base styling for most HTML elements A website has many different elements such as headings, lists, tables, buttons, forms, etc. All these fundamental HTML elements have been styled and enhanced with extensible classes. 10
  • 11. The HTML elements for which styles are provided are: • Typography • Code • Tables • Forms • Buttons • Images • Icons Reason #4. Extensive list of components Whether you need drop down menus, pagination or alert boxes, Bootstrap has got your covered. Styling of every single element follows a consistent theme and if you know LESS, then customizing it takes just few minutes. Some of the components pre styled are: • Dropdowns • Button Groups • Navigation Bar • Breadcrumbs • Labels & Badges • Alerts • Progress Bar • And many others. 11
  • 12. Reason #5. Bundled Javascript plugins The components such as drop down menu are made interactive with the numerous JavaScript plugins bundled in the bootstrap package. If you project requires sliders, tabs, accordions, then you no longer have to try and test numerous different plugins across the web. Adding these functionalities is just a matter of adding few lines of code and you are all set. With the customization option you can also choose only certain plugins to keep the file size to a minimum. Reason #6. Good documentation Not only does Bootstrap offer styling for almost every element a typical website or web application requires, it also provides a great documentation with examples and demo that only make it more easier for even someone new. Mobile First Strategy The mobile-first design has never been this crucial as consumers all over the world increasingly prefer using mobile devices, with the smartphone topping the list. This should come as no surprise with some of the recent statistics saying that Americans spend a daily average of 4.7 hours on their smartphones and 80 percnet of Millennials sleep next to their phones. Web designer, speaker, and consultant Brad Frost’s definition of mobile-first design — “making mobile a priority instead of an afterthought in order to capitalize the growth and capabilities of the medium” — definitely hits the spot as to why it is now imperative for companies to take heed. Propelrr further points out how mobile-first strategy can lead your customers to your desired actions. 12
  • 13. However, it should be noted that just like any digital strategy, mobile-first design is best utilized when incorporated into a company’s overall marketing scheme. In this sink-or-swim world of marketing with your company’s bottom line at stake, nonlinear marketing — integrating your online and offline marketing strategies clearly and seamlessly — is essential for you to send your core message across all of your channels. To achieve this, here are five ways of using mobile-first strategy to integrate online and offline marketing campaigns. Make your website appear fast and functional on any mobile device Photo Courtesy of Serge Kij via Flickr, Creative Commons Today’s consumers are on-the-go so you need to consider their mobile-viewing experience — and utmost convenience — when they visit your website. This will help you make the most out of their mobile usage especially when they use their 13
  • 14. phones with the little pockets of time that they have — while waiting in lines, using the bathroom, before falling asleep, and so on. Tailor your website to be a responsive and mobile-friendly one, keeping different mobile connection speeds and screen sizes in mind. Avoid encumbering your mobile website with large image and files. Also, always keep in mind that no matter what the platform is, content is king so while your mobile website’s design should cut to the chase, it should not be found lacking in explaining your products and services. This also comes in handy when they drive over to your physical store so make sure to optimize the mapping feature on your mobile website to help them locate your physical store. To further drive offline retails sales with integrated digital marketing, have your business and location listed on Google Places or Yahoo! Local. Give customers a great selection of deals with mobile marketing 14
  • 15. You may have plenty of bargains in your online and offline marketing channels, but you need to take it up a notch to catch the attention of always-connected consumers who are bombarded with marketing materials every day. Make your products and services find their way into customers’ radar by bringing promos, discounts, and loyalty rewards scheme right to their mobile device. Make your emails as clear, concise, and clutter-free as possible starting from the subject line up to the content itself. If you have images, avoid large files that take too long to load and include a text body which gets the message across even without the help of images. More importantly, double check that your offers across your online and offline marketing campaigns do not conflict with one another. Take advantage of QR codes 15
  • 16. Photo Courtesy of Paul Swansen via Flickr, Creative Commons QR codes take customers to your online marketing channel once their smartphone or tablet scans these barcodes. Include QR codes in your offline marketing materials — brochures, print ads, even business cards, and so on. The moment customers get their hands on these materials, it means you caught their attention and now you have to further engage them to check out your online presence. Aside from making sure the QR code is printed clearly, entice them as to why scanning the code is worth their time. Use irresistible one-liners such as “Scan here for your free gift.” Hinge it on the idea of providing customers exclusive content and promos at the minuscule cost of them simply scanning the code. 16
  • 17. Boost your sales by knowing their location Photo Courtesy of Intel Free Press via Flickr, Creative Commons Mobile device users prefer their gadgets of choice for a variety of reasons but the likeliest one to underpin their use is convenience while they are on the go. With one of marketing’s basic principles — studying your target market — learn more about your customers’ locations as sent from their mobile devices. You can then use the information to better formulate your online and offline marketing strategies. For instance, if you are a company with young professionals as your target audience, know where they hang out most of the time. You can pinpoint which of your physical retail stores need a boost. From this, create online marketing campaigns such as Facebook ads or posts drawing attention to the particular stores in question. 17
  • 18. Keep customers with apps for their needs Photo Courtesy of Rachel Elaine. via Flickr, Creative Commons While creating an innovative, cutting-edge app sounds intimidating for a sizable number of businesses, the underlying principle should be this: how can your brand’s message serve the needs of consumers? Think outside the box regarding the execution but think of utility as well. Also, never forget to stick to your company’s core branding. A great example is the kid-tracking app from Nivea’s Sun Kids, which bagged first place in the Cannes Lions International Festival of Creativity’s Mobile category last year. Recognizing that parents who use their products protect their kids, Nivea took protection to a higher level by recognizing as well — and giving a solution to — 18
  • 19. adults’ fears over missing children. Introducing this app in Brazilian magazine advertisements inserted with a tracking bracelet for kids, the company led parents to their online marketing scheme as the mobile app required connectivity to locate GPS. Mobile-first design is not coined as such for nothing. With the large and growing number of mobile users, companies should find ways on how to optimize their brand on customers’ mobile screens, with the consumers’ convenience in mind. But then again, it is a must to incorporate this strategy in the overall marketing plan and to integrate your online and offline marketing campaigns accordingly. CONCLUSION & SUMMARY One of the most appealing aspects of responsive web design is that a responsive website can provide a great user-experience across many devices and screen sizes. This is an important characteristic, since it is impossible to anticipate all the devices 19
  • 20. and screen sizes searchers will use to access your site. A site that works well regardless of these variables will provide a better and more consistent user- experience than a separate mobile site that is designed for a specific device and screen size. Let’s take the following example. Someone searches for a product on their smartphone during a lunch break at work. They find a site that has the product they’re looking for, and decide to continue researching this product on the same site when they get home. Except, when they get home, they will use their desktop instead of their smartphone. If the site in this example is responsive, this person will have a positive user- experience when transitioning from mobile to desktop because they will view the same site on their desktop as they did on their smartphone. On the other hand, if the site is a dedicated mobile site, this person will become frustrated with the fact that they have to locate the desktop version of the site, and find the product all over again. References:-  http://www.gsmarena.com/glossary.php3?term=nfc  http://en.wikipedia.org/wiki/Near_field_communication 20
  • 22. 22