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