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