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