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