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