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