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