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