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