# Browsers

  • Browsers can be divided into 2 categories, based on the technologies (Chromium/Webkit versus Gecko) they are built on

Browser overview

# Browser statistics

Browser overview

# Which browser(s) should I install?

  • Develop and test your websites on as many modern browsers and devices as possible, as these modern browsers adhere better to (HTML and CSS) standards
    • Given the market share, you should install at least (the latest version of) Google Chrome, Firefox and Edge

REMARKS

  • Both Chrome and Firefox also have specific versions with additional features for developers
  • MacOS/iOS users will likely go with Safari, but should be aware that macOS-versions of Chrome, Firefox and Edge do exist

# Settings

# Language

  • Change the language used in (the user interface of) your browser to English (United Kingdom)
    • Chrome: via menu Instellingen or type chrome://settings in the address bar, then go to the Geavanceerd section
    • Firefox: via menu Opties or type about:preferences in the address bar

# Extensions

  • Most modern browsers allow extensions to be installed for specific tasks (password managers, Belgium eID card, PDF conversion, ...)
    • Chrome: via menu Settings>Extensions or type chrome://extensions in the address bar
    • Firefox: via menu Add-ons or type about:addons in the address bar

# Features

  • To see the source code of a specific web page, press CTRL+U

REMARK

An advantage of Firefox is that you can easily notice HTML validation errors, as these are shown in red in the Firefox's source code view

  • Developer tools: modern browsers include some tools that are really useful for developers
    • Functions include
      • elements panel to inspect/change the DOM (Document Object Model) and CSS
      • console output for logging messages (when using JavaScript)
      • network panel to check the resources of the webpage
      • a button to emulate your webpage on mobile devices
      • ...
    • This function can be launched by pressing F12 or CTRL+SHIFT+I, or by selecting something on the webpage, right-click and select Inspect (Chrome) or Inspect Element (Firefox)

# Shortcuts

shortcut action
CTRL+SHIFT+I Open developer/inspection mode
CTRL+U View source code
F12 Open developer/inspection mode
Last Updated: 9/13/2022, 8:34:59 AM