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