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