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