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