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