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