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