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