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