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