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