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