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