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