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