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