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