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