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