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