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