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