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