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