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