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