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