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