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