1
HTML/CSSIntermediate#html#performance
It instructs mobile browsers to set the layout viewport width to the device's width and an initial zoom level of 1, instead of rendering a shrunk desktop-width page. Without it, responsive CSS media queries won't work correctly on mobile.
<meta name="viewport" content="width=device-width, initial-scale=1.0">