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