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