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