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