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