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