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