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