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