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