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