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