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