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