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