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