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