Use on the webTotal Use [ 3237 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/ed0495955e17563769ca8d5ac1d39bee?family=Pesagi+Kuru+Regular" 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/ed0495955e17563769ca8d5ac1d39bee?family=Pesagi+Kuru+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Pesagi Kuru Regular";
src: url("https://db.onlinewebfonts.com/t/ed0495955e17563769ca8d5ac1d39bee.eot");
src: url("https://db.onlinewebfonts.com/t/ed0495955e17563769ca8d5ac1d39bee.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/ed0495955e17563769ca8d5ac1d39bee.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/ed0495955e17563769ca8d5ac1d39bee.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/ed0495955e17563769ca8d5ac1d39bee.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/ed0495955e17563769ca8d5ac1d39bee.svg#Pesagi Kuru Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "Pesagi Kuru Regular";