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