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