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