I have created an unpublished website using HTML, CSS & JavaScript and I would like to ensure that when you click onto another page, it will always load at 100% zoom (or at least 100% in chrome).
I have attempted this by using the constantly recommended feature 'initial-scale':
<meta name="viewport" content="width=device-width, initial-scale=1">
This works fine when a page is first loaded, but if you zoom in (e.g. to 50%) then leave that page then return to it, the zoom is still at 50% rather than resetting to 100%.
I would like the zoom to become 100% every time a page is visited independent of previous visits.
Thanks in advance!