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