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