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