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