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