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