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