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