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