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