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