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