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