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