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