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