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