Use on the webTotal Use [ 3128 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/4f6445cd7abf21355e9d37f796bc6078?family=Priyati" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/4f6445cd7abf21355e9d37f796bc6078?family=Priyati);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Priyati";
src: url("https://db.onlinewebfonts.com/t/4f6445cd7abf21355e9d37f796bc6078.eot");
src: url("https://db.onlinewebfonts.com/t/4f6445cd7abf21355e9d37f796bc6078.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/4f6445cd7abf21355e9d37f796bc6078.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/4f6445cd7abf21355e9d37f796bc6078.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/4f6445cd7abf21355e9d37f796bc6078.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/4f6445cd7abf21355e9d37f796bc6078.svg#Priyati")format("svg");
}
2CSS rules to specify fonts
font-family: "Priyati";