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