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