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