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