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