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