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