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