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