Example -Demo pt unit

<!DOCTYPE html>
<html>
<head>
    <style>
        .text-10pt {
            font-size: 10pt;
        }
        
        .text-20pt {
            font-size: 20pt;
        }
        
        .text-30pt {
            font-size: 30pt;
        }
    </style>
</head>
<body>
    <p class="text-10pt">This text is in 10pt font size.</p>
    <p class="text-20pt">This text is in 20pt font size.</p>
    <p class="text-30pt">This text is in 30pt font size.</p>
</body>
</html>
Advertisements