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