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