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