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