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