The viewport meta tag controls how a webpage scales on different devices. It’s essential for responsive design.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
width=device-width
: Sets the width of the viewport to the width of the device.initial-scale=1.0
: Sets the initial zoom level when the page is first loaded.