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