Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
p {
font-size: 10px;
}
<html>
<head>
<title>Test</title>
<style type="text/css">
p {
font-family: Verdana, Arial, Helvetica, sans-serif;
}
p.a {
font-size: 8px;
}
p.b {
font-size: 10px;
}
p.c {
font-size: 12px;
}
</style>
</head>
<body>
<p class="a">test</p>
<p class="b">test</p>
<p class="c">test</p>
</body>
</html>