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