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