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