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