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