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