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