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