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