I want to use some uncommon fonts in html but could not get them to work. For example I want to use Kollekif font type but it's not working
<!DOCTYPE html>
<html>
<head>
<style>
p.b {
font-family: "Kollekif", Times, serif;
}
p.a {
font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<p class="a">This work for Arial Font </p>
<p class="b">How can I make this font Kollekif</p>
</body>
</html>
how could I implement some of this uncommon fonts?