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