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