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