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