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