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