linux-pages.com
... arcane linux knowledge collected over the eons, bit by bit ...
To make your web-page fonts increase/decrease as the browser window dimensions change use viewport-based values instead of %, ems, pxs or pts.
Example:
h1 {
font-size: 4vw;
}
h2 {
font-size: 3vh;
}
h3 {
font-size: 2vmax;
}
p {
font-size: 2vmin;
}