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