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