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