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