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