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