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