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