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