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