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