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