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