The initial-scale is the one that renders when the page initially loads. The scale is changed by pinching and double tapping on the device. Instead of using a fixed width, you should use the width=device-width which automatically makes the width equal to the width of the device’s screen: <meta name=”viewport” content=”width=device-width/” > To keep users from expanding the window size beyond the s

