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