CSS Responsive Font Size

Font sizes can adapt to screen size using viewport units.

Preview

Code

<style>
p{
font-size:3vw;
}
</style>

<p>Resize the browser window to see the font change.</p>

More CSS Fonts Examples (8)