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