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