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