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