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