I need to supervise some web page provided by several servers. I have made the following simple html code with a frameset:
<frameset cols="25%,25%,25%,*" rows="50%,*" border="0">
<frame src="http://server1/" />
<frame src="http://server2/" />
<frame src="http://server3/" />
<frame src="http://server4/" />
<frame src="http://server5/" />
<frame src="http://server6/" />
</frameset>
the page is auto-refreshed every 60s thanks to a "<meta http-equiv="refresh" content="60" />
" in the header.
But, as I was forced to add 2 more servers recently, the content of each frame is not always enough readable (I can't see the interesting part any more without scrolling each frame).
I would like to "scale down" or "zoom out" the content of each frame. Despite some long research on Google, the only approaching solution I found, is this one : How can I scale the content of an iframe? which unfortunately reduce the size of the frame not its content.
Is it possible ?
If yes, how ?