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