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