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