How would I add a js function that zooms the webpage to 125% on loading?
I found a way to do it with buttons, but I want the webpage to auto-zoom on loading.
<button onclick="body.style.zoom='150%'">Zoom 150%</button>
I tried to put it into the body tag like the code below but it did not work...
<body onload="body.style.zoom='150%'">
Thanks.