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