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