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