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