HTML
  <!-- Tells the browser we support whatever size it is & not to zoom in -->
<meta name="viewport" content="width=device-width,initial-scale=1">
  CSS
  html {
  /* Tells the browser not to automatically scale the fonts—we want complete control */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}