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