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