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