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