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