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