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