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