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