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