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