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