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