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