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