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