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