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