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