x
 
1
<!DOCTYPE html>
2
<title>My Example</title>
3
<style>
4
    .example {
5
        font-family: Helvetica, Arial, sans-serif;
6
        font-size: 4vw;
7
    }
8
</style>
9
10
<p class="example">Some random text to demonstrate the effect.</p>
11
12
<p>Helvetica will be used if the user's system has it, otherwise Arial will be used. If Arial isn't available, then the system's default sans-serif font will be used.</p>