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