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