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