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