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