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