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