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