Web Browsers & Mobile Web Browsers.

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

RESPONSIVE AND MOBILE DESIGN BY: CHRIS PASQUARETTE APRIL, 2013.
 2008 Pearson Education, Inc. All rights reserved Web Browser Basics: Internet Explorer and Firefox.
The Client-Server Model for the Web 1. A Web Client (usually in the form of a web browser) makes an HTTP request to a specific web server. 2. The Web Server.
Web Design Practices Browsers and Displays. Key Concept Web browsers are HTML and CSS renders. How your page looks depends on which browser you use. How.
Responsive Web Design Design websites so that they can adapt to different devices seamlessly. Image by Muhammed RafizeldiMuhammed Rafizeldi.
RESPONSIVE DESIGN Sources: Kadlec, T. (2012). Implementing responsive design. Berkeley, California: New Riders Publishing. MarcotteMarcotte, E. (2010).
LEARN THE QUICK AND EASY WAY! VISUAL QUICKSTART GUIDE HTML and CSS 8th Edition Chapter 12: Building Responsive Webpages.
Chapter 8 More on Links, Layout, and Mobile Copyright © 2013 Terry Ann Morris, Ed.D revised by Bill Pegram, 9/24/
Basic Web Design. Technology is a tool  FIRST, understand how people actually interact with each other and with the information in their lives, in all.
And Mobile Web Browsers
DEVELOPING FOR MOBILE Jackie Calapristi. AGENDA  Why you should go mobile  Mobile Design Options  Responsive Design  Tips & Tools to Help You Build.
HTML Essentials Frames and Frame Tags. Introduction A frame used to be an effective design tool Utilized space effectively by subdividing screen One idea:
Web Browsers And Mobile Web Browsers. Guiding Questions What is a mobile Web browser? Why do Web pages look differently on different Web browsers? What.
Chapter 2 Developing a Web Page. A web page is composed of two distinct sections: –The head content –The body Creating Head Content and Setting Page Properties.
The Internet BTEC 149. What is it? Internet: A network of connected computers and computer networks located around the world ◦An international community.
Taking Your Website On The Road Technology No Where to Go.
Week 8 – Part 3 More on Links, Layout, and Mobile Key Concepts 1.
PACS - 09/19/15 1 favicon A ‘Favorite icon’ is a file containing one or more small icons associated with a particular website or web page. Web browsers.
MIS 425 Lecture 3 – HTML 5 and CSS Instructor: Martin Neuhard
Objective Understand concepts used to web-based digital media. Course Weight : 5%
Responsive Web Design Minjuan What is Responsive Web Design?  A site's ability to resize dynamically based on the device being used.  The.
Web Standards Web Design – Sec 2-4 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 7 Key Concepts 1 Copyright © Terry Felke-Morris.
McLean HIGHER COMPUTER NETWORKING Lesson 6 Types of Browsers & WAP Explanation of browser functions Wireless access to the Internet Description of.
A multi million dollar web browser by Apple.  It renders web pages at lightning speed. It works on your iPad, iPhone, iPod touch, Mac, and PC. It shows.
Thực hiện: D3 GVLT: BROWERS. Browser Compatibility I Check the compatibility II Tools III.
May 6, 2009 Browser Compatibility Testing Definition It is a non functional type of testing where web based applications are tested on various browsers(IE.
Browser Compatibility Testing, using different browsers Conditional Statements.
History Before designing web pages it is important to know how it all came about… History Channel – The Invention of the Internet History Channel – The.
Web Standards Web Design – Sec 2-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
How to fix Netflix Signing In Issues? For More Details Visit Our Website
And Mobile Web Browsers
Chapter 17 The Need for HTML 5.
Getting Started with HTML
The Future of Drupal and Content Delivery
HTML5 Basics.
Implementing Responsive Design UNIT I.
Web Browser presentation Name/ Hassan AL-Abdulmohsen
By Nathan Faloon. By Nathan Faloon Essential Criteria achieved Informational website, which has at least 6 web pages. Home page should display a Hit.
One Design Multiple Display
A better approach to mobile
Web Standards Web Design – Sec 2-3
Lesson 4: Web Browsing.
Chapter 4: HTML5 Media - <video> & <audio>
MUG Tuesday, May 31, 2016.
CS 0134 (term 2181) Jarrett Billingsley
Web Standards Web Design – Sec 2-3
RESPONSIVE WEB DESIGN.
IS1500: Introduction to Web Development
Chapter: 2 Diving into Mobile: App or Website?
HOW CAN I MAKE MOZILLA FIREFOX WORK FASTER? Mozilla Firefox is one the free and open source web browsers available in the world of technology. It is available.
Objective % Explain concepts used to create websites.
PRESENTATION 1.0 BY – SAFEEBOOK Web browsers.
History Before designing web pages it is important to know how it all came about… History Channel – The Invention of the Internet Start at 17mins.
Browser Support for HTML5
Web Design Designing for the Unknown.
Browser Engine How it works…..
Responsive Framework.
Web: Big Concepts Ch. 3 1/10/2019.
Lesson 4: Web Browsing.
Web Design Principles.
Web Standards and Accessible Design.
Basics Intro.
Objective Explain concepts used to create websites.
Web Client Side Technologies Raneem Qaddoura
And Mobile Web Browsers
And Mobile Web Browsers
Various mobile devices
17 RESPONSIVE WEB DESIGN.
Presentation transcript:

Web Browsers & Mobile Web Browsers

Guiding Questions What is a mobile Web browser? Why do Web pages look differently on different Web browsers? What is Web page rendering? What is a viewport? Guiding Questions

Most popular Web Browsers

A mobile browser, also called a microbrowser, minibrowser, or wireless internet browser (WIB), is a web browser designed for use on a mobile device such as a mobile phone or PDA. Mobile browsers are optimized so as to display Web content most effectively for small screens on portable devices. Mobile browser software must be small and efficient to accommodate the low memory capacity and low-bandwidth of wireless handheld devices. Mobile Browsers Source: wikipedia

Web browser options

Source: Stat Counter, 2013 Mobile Web Engines

Mobile Web Browsers Source: Stat Counter, 2013

Not all browsers render all web content in exactly the same way. Web content doesn't need to look exactly the same across every browser and device. As long as it still provides a good user experience and gives them access to the content and services required by their current browsing experience. Web content

Web browser rendering Your Web browser uses a rendering engine The rendering engine will start getting the contents of the requested document from the networking layer.  For better user experience, the rendering engine will try to display contents on the screen as soon as possible. Web browser rendering

Why Web page rendering matters

Why don’t Web pages look the same on all Browsers? The screen resolution of the monitor or screen The operating system The web browser Individual user preferences Why don’t Web pages look the same on all Browsers?

Web browsers do not render pages pixel by pixel Web browsers do not render pages pixel by pixel. They read the entire code and produce an output depending on your code. There are, however, differences in the code interpretation. Therefore you should check the way your website looks on different browsers and operating systems. Web Browser Output

Always test your website in multiple browsers to ensure consistency Always test your website in multiple browsers to ensure consistency! http://browsershots.org/ Test your site here Test your Website

The viewport is the area a web browser has to display a web page. The size of that area determines the layout of the page (for example how text flows from line to line) On desktop browsers the viewport can be resized by dragging the browser window into any size desired. On mobile devices it is controlled using the viewport meta tag. What is a Viewport?

Viewport Examples

Different mobile browsers have slightly different implementations of the viewport meta tag.  The viewport meta tag is an HTML meta tag that lives inside the <head> element of a web page. It was originally created by Apple when they released Mobile Safari for the iPhone and though not an official standard it has since been adopted by many other mobile browsers Viewport problems

Zooming is a common action when users find a website too small for comfortable viewing. Or, to put it another way, websites that are designed too small are very common. There is really no “perfect” size, because almost everyone has at least some level of visual impairment, since our eyes inevitably deteriorate with age. Zooming & Browsers

With the increase in touchscreen devices, pinch-to-zoom has become the standard way to enlarge fixed-sized content designed for larger screens (i.e. much of the Web today). A word about Zooming

There are many tools for Web designers

Tools for Responsive Web Design Mozilla Firefox has a built-in tool in its browser Tools for Responsive Web Design

Chrome Mobile Emulator

Safari Emulator

Opera Mobile Emulator