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