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