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