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