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