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