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