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