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