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