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