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