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