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