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