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