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