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