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