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