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