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