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