The Company Name

Home | Contact Us | Locations | Sale Items

Contact Us

The only change I have made to this page is to add a meta tag in the header for the viewport. The viewport tells the browser to report the page width the same as the browser width instead of some other random number.

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

This meta tag tells the browser to report the device width as the browser width, set the page scale to 100%, and not to scale larger than 100%. This last part is optional and hotly debated as it prevents two finger zooming and horizontal scrolling (yuck). However, if you design it right there should be no need to zoom. YOu may notice that the paragraph text still changes size a bit. We wil fix that later.