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