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