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