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