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