To make a webpage zoom to 100% on a mobile device you need to add the following into the head:
<meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0" />
This makes the design fit to the width and stops the user from zooming in and out.
To make a webpage zoom to 100% on a mobile device you need to add the following into the head:
<meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0" />
This makes the design fit to the width and stops the user from zooming in and out.