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