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