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