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