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