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