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