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