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