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