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