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