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