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