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