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