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