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